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.
In my iPhone app, I have a number of UIImageView that do the same
Share
You could place all the
UIImageViews in one superUIView. Depending on what you want to do, you could for example easily hide all objects inside theUIViewwith one line of code.