What does this error indicate:
"Popovers cannot be presented from a view which does not have a window."
|
What does this error indicate: "Popovers cannot be presented from a view which does not have a window."
| |||||
feedback
|
|
the view you're adding the popover to has to already have been added to a window with the "addSubview:" method. Try waiting until
is called for the view and then load the popover | |||||
feedback
|
|
the thing that saved my life:
by adding if condition it doesn´t crash anymore. I don´t really get it because the presentPopoverFromRect function is ALWAYS called. There is no situation where window would be nil but anyway it did the trick. I guess it's more about refreshing the reference to the window or something like that.. | |||||||||||||||
feedback
|
|
I got this problem. I had a UITabBarController as the detail view, and I set the barButtonItem as the leftBarButtonItem on all three navigation controllers in the tab bar.
Turns out only the last one added is valid, and the previous two would throw the exception when tapped on. To fix it, I only set the leftBarButtonItem for the visible view controller, and just switched the barButtonItem to the visible view controller every time the user switched tabs. | |||||
feedback
|
|
Just encountered this issue. Turned out that the inView: parameter was using an IBOutlet that wasn't connected in IB. Thus, an attempt was made to launch the popover in nil. That doesn't work. So, make sure you are using a valid view. | |||
|
feedback
|
|
I received the same error message when assigning the same In my
The error message was slightly deceiving at first but the answers above helped me out. I wonder why I could click the "Menu" button up to 3-4 different times before the segfault... I'll investigate further. | |||
|
feedback
|
|
This error also occurred when the inView: Parameter is incorrect - to test try self.view | |||
|
feedback
|