Skip to content

Instantly share code, notes, and snippets.

@tLewisII
Created May 2, 2015 17:51
Show Gist options
  • Save tLewisII/ad218adc4dda5c61602f to your computer and use it in GitHub Desktop.
Save tLewisII/ad218adc4dda5c61602f to your computer and use it in GitHub Desktop.
Changes in iOS 8.3 breaks older forced popover code.
// Need both of these, since one `adaptivePresentationStyleForPresentationController:` works on 8.0 to 8.2, and the other,
// `adaptivePresentationStyleForPresentationController:traitCollection:` works on 8.3 plus
- (UIModalPresentationStyle)adaptivePresentationStyleForPresentationController:(UIPresentationController *)controller {
return UIModalPresentationNone;
}
- (UIModalPresentationStyle)adaptivePresentationStyleForPresentationController:(UIPresentationController *)controller traitCollection:(UITraitCollection *)traitCollection {
return UIModalPresentationNone;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment