循环遍历 Objective C 中的控件
我的 UIView 上有几个标签,我想更改其属性。我想做的是迭代它们设置/获取值。如果您熟悉 C#,那么我正在尝试模拟 FindControl 函数。
本质上,问题是如何获取 UIView 上的所有控件,以便我可以操纵它们。
非常感谢任何帮助。
麦克风
I have several labels on my UIView that I want to change the properties on. What I would like to do is iterate through them setting/getting there values. If you are familiar with C# then it's the FindControl function I am trying to emulate.
In essence the question is how to get all the controls on a UIView so I can manipulate them.
Any help greatly appreicated.
Mike
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
UIView 的 subviews 属性为您提供了一个包含所有子视图的 NSArray。
The subviews property of a UIView gives you an NSArray holding all subviews.