在Xcode中,Popover segue有两个名为Anchor和Passthrough的连接字段。它们用于什么?
答案 0 :(得分:55)
这些是UIPopoverController
的属性,而不是segue。这就是为什么如果你查看UIStoryboardPopoverSegue
的文档,你将找不到这两个属性。
主播告诉UIPopoverController
指向其箭头的位置。
passthrough是一组视图,用户可以在显示UIPopoverController
时与之交互。
文档在这里:https://developer.apple.com/documentation/uikit/uipopovercontroller
以及通过passthrough视图的部分在这里: https://developer.apple.com/documentation/uikit/uipopovercontroller/1624654-passthroughviews
答案 1 :(得分:1)
UIPopoverController似乎最近已被弃用。但是,我仍然在情节提要segue检查器中看到“锚定”和“通过”字段。