Advertisement
Guest User

Untitled

a guest
Sep 23rd, 2014
188
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. UIView* senderView = [sender valueForKey:@"view"]; //HACK
  2. UIPopoverPresentationController* popover = alertController.popoverPresentationController;
  3. if (popover)
  4. {
  5. popover.sourceView = senderView;
  6. popover.sourceRect = senderView.bounds;
  7. popover.permittedArrowDirections = UIPopoverArrowDirectionAny;
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement