I\'m currently using Xcode 4.6 and I\'m simply wondering how to select multiple buttons across different UIViews, but under a single view controller. CMD clicking doesn\'t s
Follow this steps
1. Create IBAction In View Controller
In .h file
-(IBAction)action:(id)sender;
In .m File
-(IBAction)action:(id)sender{
}
2 . Connect all button to this action

3 . Give Each Button a tag by follow the next Picture

4 . Now inside your action function put these
-(IBAction)action:(id)sender{
UIButton *button=(UIButton*)sender;
if(button.tag==1){
//your stuff!
}
if(button.tag==2){
//your stuff!
}
if(button.tag==3){
//your stuff!
}
}
Run and Go.