Open zedrdave opened 11 years ago
+1
_parentView = [_window.subviews lastObject];
will ensure that the parent view is the top most subview in the window.
+1
tposch's solution worked for me.
+1
Thanks for the bug fix! But somehow I saw the issue only after upgrading to iOS8. Anyway, problem solved. :+1:
My window has a background subview and the popOver gets added to this subview instead of the RootViewController's view (which means it doesn't get displayed in most cases).
I found that replacing the following line:
By
in presentPopoverFromPoint() fixed the problem for me.