Top "Iboutlet" questions

The type qualifier IBOutlet is a tag applied to an instance-variable declaration so that the Interface Builder application can recognize the instance variable as an outlet and synchronize the display and connection of it with Xcode.

Assigning a IBOutlet in Objective-C

The code generator Accessorizer has an option to assign IBOutlets rather than retaining them. For example, compare these two generated …

objective-c iboutlet
Can you hard code IBActions and IBOutlets, rather than drag them manually in Interface Builder?

Is it possible to to hard code the IBActions and IBOutlets in code, instead of drag-connecting them in Interface Builder?

objective-c cocoa-touch ibaction iboutlet
NSScrollview not scrolling programmatically?

Note:Both Horizontal and vertical scrollers are visible on the screen and work fine.But I cant make them move …

objective-c macos cocoa iboutlet nsscrollview
How to connect delegate from custom class in xib?

I have created a class "DeletableImageView" (.swift + .xib) which uses the protocol I defined as "DeletableImageViewDelegate" through a property I …

ios swift delegates xib iboutlet
IBOutlet and viewDidUnload under ARC

There is a similar question to this on SO here, however I just want to clarify something that wasn't fully …

ios weak-references iboutlet automatic-ref-counting
All IBOutlets are nil

Hello I am initializing viewController using this code: var aboutUsViewController = self.storyboard?.instantiateViewControllerWithIdentifier("AboutUsViewController") as AboutUsViewController After this I move …

ios swift null iboutlet
Can I connect multiple objects with different tags to the same IBOutlet?

I have 30 buttons in one view in Interface Builder. Each has a different tag between 100001 and 100030. I've found it easy …

ios objective-c xcode iboutlet iboutletcollection
awakeFromNib, outlets and storyboards: is the documentation wrong?

According to the NSObject UIKit Additions Reference, outlet variables should be set by the time awakeFromNib is called (emphasis all …

ios uikit uistoryboard iboutlet