I have an xib file with a number of views. Their IBOutlet
s are named view1
, view2
, view3
, and so on, and I want to access them in a loop. Is it possible to do this in Objective-C?
I know in ActionScript you can generate an object's name like this: ["view"+num]
.