获取当前的 UIView?

发布于 2024-08-30 01:41:29 字数 124 浏览 3 评论 0原文

有没有办法获取当前的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

诗化ㄋ丶相逢 2024-09-06 01:41:29

有几种选择。一种是将 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]).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文