使用 iPhone SDK 对对象进行分组?
在我的 iPhone 应用程序中,我有许多 UIImageView 执行相同的操作,然后第二个加载执行相同的操作。我可以知道如何标记/分组这些对象,以便我可以简单地引用具有一个名称的所有对象吗?否则,这意味着单个重复操作必须有数十行代码。
In my iPhone app, I have a number of UIImageView
that do the same thing, then a second load which do the same thing. Can I some how tag/group these so that I can simply reference all the objects with one name? Otherwise it means having to have dozens of lines of code for a single repetitive action.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以将所有
UIImageView
放在一个超级UIView
中。例如,根据您想要执行的操作,您可以使用一行代码轻松隐藏UIView
内的所有对象。You could place all the
UIImageView
s in one superUIView
. Depending on what you want to do, you could for example easily hide all objects inside theUIView
with one line of code.