Code Monkey home page Code Monkey logo

Comments (5)

edcousins avatar edcousins commented on June 8, 2024 1

That worked - thank you!

from kuipopover.

Kofktu avatar Kofktu commented on June 8, 2024

@edcousins
You have to showPopOver it before dismissPopOver

from kuipopover.

edcousins avatar edcousins commented on June 8, 2024

Hi @Kofktu

The popover has already been shown in a previous function. Basically I am showing the popover upon pressing a UIBarButtonItem, and then when pressing a button within the popover view controller, I want to subsequently hide the popover (as it's function is complete at this point). Here is the code I am using to show/hide:

@objc func showFilter(sender: UIBarButtonItem) {
        let storyboard = UIStoryboard(name: "Main", bundle: nil)
        let filterVC = storyboard.instantiateViewController(
            withIdentifier: "filterViewController") as! FilterViewController
        filterVC.showPopover(barButtonItem: sender)
    }
    
    func dismissFilter() {
        let storyboard = UIStoryboard(name: "Main", bundle: nil)
        let filterVC = storyboard.instantiateViewController(
            withIdentifier: "filterViewController") as! FilterViewController
        filterVC.dismissPopover(animated: true, completion: {
            print("CustomPopOverViewController.dismiss.completion")
        })
    }

Appreciate the assistance.

from kuipopover.

Kofktu avatar Kofktu commented on June 8, 2024

@edcousins
Ah,
You can call dismissPopOver inside the FilterViewController
Don't new instance, called dismissPopover

let viewController = FilterViewController()
...
viewController.showPopover()

DispatchQueue.main.asyncAfter(deadline: .now() + 10.0) {
            viewController.dismissPopover(animated: true, completion: {
                print("CustomPopOverViewController.dismiss.completion")
            })
        }
class FilterViewController: UIViewController, KUIPopOverUsable {
..

func dismiss() {
    self.dismissPopover(animated: ,completion:)
}
}

from kuipopover.

Kofktu avatar Kofktu commented on June 8, 2024

Good!

from kuipopover.

Related Issues (14)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.