Can multiple buttons have one outlet?
iboutlet, iphone, objective-c, uibutton, xcode
Solution
Sounds like you might be looking for `IBOutletCollection` (documentation linked for you).
I haven't actually made use of this yet, and it can only be used with an array of things. But I'm thinking these things (in the array) could be buttons.
Problem
Is there is any way to connect multiple UIButtons to one IBOutlet? I want to to do this so I can disable and change the alpha setting for a couple buttons at the same time rather than having an outlet for each button I want to modify.