I was wondering how is it possible that use ONE IBOutlet to several objects , for example I have IBOutlet UITextView *myText; then 3 UItextView on one view , so I want connect all of them with myText !
I was wondering how is it possible that use ONE IBOutlet to several objects
Share
You can have one
NSArraywhich you declare as anIBOutletCollection(instead ofIBOutlet). In order to know what text field you are getting out of the array, you can set a tag on each one in IB and just pull from the array the text fields that match specific tags.