如何在swift中设置restorationIdentifier?

时间:2015-12-01 15:53:45

标签: swift

我已经创建了UIView,并将其附加到UIViewController,然后我想设置其(UIView)唯一标识符以供下次选择而不保存{在变种

中{1}}

我该怎么做?我已尝试UIView并直接更改标识符,但未找到任何内容。

- 更新

我在文档https://developer.apple.com/library/ios/featuredarticles/ViewControllerPGforiPhoneOS/PreservingandRestoringState.html&#34中找到此字符串;您可以通过编程方式或在故事板文件中分配恢复标识符。",但我该怎么办?

1 个答案:

答案 0 :(得分:2)

只需输入

即可
self.restorationIdentifier = "/*name it here*/"

或视图:

view.restorationIdentifier = "/*name it here*/"

希望有所帮助:)