Top "Ibaction" questions

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

IBOutlet and IBAction

What is the purpose of using IBOutlets and IBActions in Xcode and Interface Builder? Does it make any difference if …

objective-c swift interface-builder iboutlet ibaction
Gesture recognizer and button actions

I have a view hierarchy that looks something like this: UIView (A) UIView > UIImageView UIView > UIView (B) UIView &…

iphone uibutton conflict uigesturerecognizer ibaction
How to hide tab bar with animation in iOS?

So I have a button that is connected to a IBAction. When I press the button I want to hide …

ios uitabbarcontroller uitabbar ibaction
IOS: one IBAction for multiple buttons

In my project I must control action of 40 buttons, but I don't want to create 40 IBAction, can I use only …

ios objective-c ibaction
how to access from UICollectionViewCell the indexPath of the Cell in UICollectionView

i want to animate the UICollectionViewCell when action is called. i have done UICollectionViewCell in Interface Builder, the UICollectionView also. …

ios ibaction uicollectionview nsindexpath uicollectionviewcell
UIButton events. What's the difference?

I've encountered a problem where my button should remain "pressed down" while it shows popover called from it. Popover is …

objective-c ios uibutton ibaction
Objective C: what is a "(id) sender"?

In some IBAction I saw: - (IBAction)pushButton:(id)sender; This (id)sender when do I use it?

objective-c ibaction sender
iOS, unrecognized selector sent to instance?

I got a mainscreen with a imported custom actionBar. I created this actionBar in a separate .xib file, with a .…

ios iphone xib ibaction
How do I call a button function when the button is not being pressed

I have an IBAction connected to a button, and I wanted to know if there is any way to run …

ios swift swift2 ibaction
What's the best way to call an IBAction from with-in the code?

Say for instance I have an IBAction that is hooked up to a UIButton in interface builder. - (IBAction)functionToBeCalled:(…

ios iphone cocoa-touch interface-builder ibaction