You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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:
_parentView = [_window.subviews objectAtIndex:0];
By
_parentView = _window.rootViewController.view;
in presentPopoverFromPoint() fixed the problem for me.
The text was updated successfully, but these errors were encountered:
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.
The text was updated successfully, but these errors were encountered: