这是我想要做的屏幕截图.我在故事板中使用popoversegue.
我该怎么办这个问题?
谢谢你的帮助.
解决方法 您可以使用passthroughVIEws来实现相同的目标.yourPopoverController.passthroughVIEws = [NSArray arrayWithObjects:vIEwToEnabletouch,nil];
passthroughVIEws
PropertyAn array of vIEws that the user can interact with while the popover is
visible. DeclarationSwift
var passthroughVIEws: [AnyObject]?
Objective-C
@property(nonatomic,copy) NSArray *passthroughVIEws
discussion
When a popover is active,interactions with other vIEws are normally
Disabled until the popover is dismissed. Assigning an array of vIEws
to this property allows taps outsIDe of the popover to be handled by
the corresponding vIEws. import Statementimport UIKit
Availability
Available in iOS 3.2 and later.
参考UIPopoverController Class Reference
如果您不希望在用户点击外部时忽略popover,那么您可以通过以下方式实现:
- (BOol) popoverControllerShoulddismisspopover:(UIPopoverController *)popoverController{ return NO;}总结
以上是内存溢出为你收集整理的ios – 如何在PopOverView打开时启用外部触摸?全部内容,希望文章能够帮你解决ios – 如何在PopOverView打开时启用外部触摸?所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)