If your touch up inside action on those buttons go to the same ibaction method call, you can set the tag value of each button to something unique in code or interface builder then judge the senders value but adding :(id)sender like
- (IBAction) viewImageList:(id)sender{ if([sender isKindOfClass:[UIButton class]]){ uIButton btn =(UIButton)sender; switch(btn.tag){ ...
AtomRiot
2010-06-28 05:14:26