Allow tap events outside a custom UIPresentationController on iPad(iOS 8)
Allow tap events outside a custom UIPresentationController on iPad(iOS 8)
- Subject: Allow tap events outside a custom UIPresentationController on iPad(iOS 8)
- From: "Mazzaroth M." <email@hidden>
- Date: Wed, 28 Jan 2015 19:20:37 -0500
I want to have a custom `modal` appear over the Master portion of a
UISplitViewController. So far, I've managed to cobble together a
UIViewControllerTransitioningDelegate, a UIPresentationController subclass.
chartSummaryNavigationController.transitioningDelegate =
_transitioningDelegate;
[self presentViewController:chartSummaryNavigationController
animated:YES completion:NULL];
in the UIPresentationViewController subclass, I override
-frameOfPresentedViewInContainerView
and
-sizeForChildContentContainer:withParentContainerSize:
so far. Just hoping to get it `working` and in
-sizeForChildContentContainer:withParentContainerSize: return a smaller
width than the landscape iPad. Voila, the modal does a standard
presentation transition from the bottom of the screen. However, tapping
anywhere around the presented modal results in no events, which is what I
actually want. In -frameOfPresentedViewInContainerView I noticed that
self.containerView.frame returns a frame the size of the entire iPad. Is
that why I get no events around the presentedViewController? If so, how do
I reduce the frame of self.containerView to match that of the presented
controller?
If that's not the problem, is there another way to allow tap events outside
a presented view controller?
Michael
_______________________________________________
Cocoa-dev mailing list (email@hidden)
Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden