获取当前的 UIView?
有没有办法获取当前的 UIView 对象,我
- (void)viewDidLoad
在同一个 .m 文件中的另一个方法中定义了使用/更改它们?
谢谢
is there a way to get the current UIView object, which i defined in
- (void)viewDidLoad
to use/change them in another method in the same .m file?
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
有几种选择。一种是将 UIView 存储在变量中以供以后访问。另一种方法是给 UIView 一个唯一的标签 (
view.tag
) 并从其超级视图 ([containerView viewWithTag:tag]
) 中获取它。There are a few options. One is to store the UIView in a variable for later access. Another is to give the UIView a unique tag (
view.tag
) and grab it from its superview ([containerView viewWithTag:tag]
).