Top "Ibaction" questions

IBAction is a type qualifier used by Interface Builder to synchronize with Xcode.

Multiple UIAlertView; each with their own buttons and actions

Im creating a view in Xcode 4.3 and im unsure how to specify multiple UIAlertView's that have their own buttons with …

xcode button uialertview ibaction
UIButton event 'Touch Up Inside' not working. 'Touch Down' works fine

I've got a UIButton in a UIView, which is in a UIViewController that I've allocated and inited from a .xib …

iphone uikit uibutton touch ibaction
Swift - call @IBAction method in viewDidLoad without parameter

@IBAction func getNewPhotoAction(sender: AnyObject) { println("getNewPhotoAction") } override func viewDidLoad() { super.viewDidLoad() self.getNewPhotoAction(sender: AnyObject) // Error } I just want …

swift parameters ibaction
Action when pressing return key on keyboard (iOS)

- (BOOL)textFieldShouldReturn:(UITextField *)textField { [self checkRun:nil]; return YES; } I'm trying to complete the IBAction checkRun when the return …

ios objective-c uitextfield ibaction
Pass different parameters to an IBAction

My iPhone app has many buttons and I want all the buttons to call the same method, but with different …

ios objective-c cocoa-touch ibaction
Programmatically generating UIButtons and associate those with IBAction

How do I do if I want to programatically generate a set of buttons and then associate those with IBActions? …

iphone objective-c xcode ibaction
How to define which button pressed if they both have same IBAction?

I have two UIButtons (I create them using IB), which connected to File's owner with the same IBAction, how can …

objective-c ios uibutton ibaction
Custom UITableViewCell and IBAction

I have a custom UITableViewCell on which I have added a button, I have associated that button on an IBAction …

uitableview ibaction
How to use Gesture Recognizers in IB (iPhone/iPad)?

I have just discovered the Gesture Recognizers in IB and I would like to make use of them. I've tried …

iphone interface-builder uigesturerecognizer ibaction uitapgesturerecognizer
IBAction & Buttons programmatically

I'm creating buttons programmatically and I then want to add functionality whereby when they are tapped on/pressed, they stay …

ios objective-c uibutton uistoryboard ibaction