在iPad上形状不规则的Modal View
是否有可能使用presentModalViewController
显示不规则形状的模态视图? 模式部分覆盖屏幕(演示风格设置为UIModalPresentationFormSheet
)
我试图简单地设置clipsToBounds
为NO,它没有工作。 我似乎也无法摆脱圆angular。
PS:我想避免必须手动创build一个自定义视图。
PPS:我从文档中注意到,我们现在应该在iOS 5中使用presentViewController
。虽然它没有完成任何不同的事情。
我有点工作。 这是一个黑客,但它的作品。
代码(这是在产生模式的控制器内部):
// Present the modal [self presentViewController:modalVC animated:YES completion:NULL]; // Let content overflow and shrink superview to a small dimension modalVC.view.clipsToBounds = NO; modalVC.view.superview.bounds = CGRectMake(modalVC.view.superview.bounds.origin.x, modalVC.view.superview.bounds.origin.y, 100, 100);
现在只要让模态的视angular比超视angular更大,你就可以对形状发疯。
请注意,触摸只会在超级景区注册。
不,你不能,你必须坚持苹果提供给你的样式, http://developer.apple.com/library/ios/#featuredarticles/ViewControllerPGforiPhoneOS/ModalViewControllers/ModalViewControllers.html
正如你所说,你必须build立你自己的观点,并使之animation化。