diff options
Diffstat (limited to 'Juick/Model')
-rw-r--r-- | Juick/Model/User.m | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Juick/Model/User.m b/Juick/Model/User.m index 38e4269..8c20aa3 100644 --- a/Juick/Model/User.m +++ b/Juick/Model/User.m @@ -22,6 +22,12 @@ [alert setTitle:@"Error"]; [alert setMessage:@"Unable to login, check username/password, or network connectivity"]; [alert addAction:[UIAlertAction actionWithTitle:@"OK" style:UIAlertActionStyleCancel handler:nil]]; + UIPopoverPresentationController *popover = [alert popoverPresentationController]; + if (popover) { + popover.sourceView = view.view; + popover.sourceRect = CGRectMake(CGRectGetMidX(view.view.bounds), CGRectGetMidY(view.view.bounds), 0, 0); + popover.permittedArrowDirections = UIPopoverArrowDirectionDown; + } [view presentViewController:alert animated:YES completion:nil]; } |