我已经创建了UIView
,并将其附加到UIViewController
,然后我想设置其(UIView
)唯一标识符以供下次选择而不保存{在变种
我该怎么做?我已尝试UIView
并直接更改标识符,但未找到任何内容。
- 更新
我在文档https://developer.apple.com/library/ios/featuredarticles/ViewControllerPGforiPhoneOS/PreservingandRestoringState.html&#34中找到此字符串;您可以通过编程方式或在故事板文件中分配恢复标识符。",但我该怎么办?
答案 0 :(得分:2)
只需输入
即可self.restorationIdentifier = "/*name it here*/"
或视图:
view.restorationIdentifier = "/*name it here*/"
希望有所帮助:)