在popover segues中使用的Anchor和Passthrough是什么?

时间:2013-09-04 13:17:41

标签: ios xcode storyboard segue

在Xcode中,Popover segue有两个名为Anchor和Passthrough的连接字段。它们用于什么? image

2 个答案:

答案 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检查器中看到“锚定”和“通过”字段。