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.

Change position of a IBOutlet in Swift

So i have this button: @IBOutlet var bouton: UIBarButtonItem! And i want to change is position But the buton doesn't …

button swift position iboutlet
this class is not key value coding-compliant for the key imageView

I have a problem with the RootViewController of my application. When I run the app I get this error. What …

ios exception compiler-errors iboutlet
How to make IBOutlets out of an array of objects?

I want to make an array with a bunch of UIImageViews I have in Interface Builder. Instead of having 20 or 30 …

ios iphone interface-builder iboutlet iboutletcollection
Swift, iboutlet and custom controls

I may be doing something really stupid, but I don't seem to be able to use Interface Builder to connect …

ios xcode swift iboutlet
How to connect an IBOutlet from an UITableViewController directly to custom cell?

A few days ago, I watched the video tutorial which explains how to use custom cells in an UITableViewController. I've …

ios5 uitableview storyboard iboutlet
Interface Builder won't allow connections to custom UIView class?

Using Xcode 4.3.3, I can't figure out how to connect outlets in a custom UIView class with objects created in Interface …

iphone ios ipad uiview iboutlet
(Swift) PrepareForSegue: fatal error: unexpectedly found nil while unwrapping an Optional value

DetailViewController: @IBOutlet var selectedBundesland: UILabel! TableViewController: override func prepareForSegue(segue: UIStoryboardSegue!, sender: AnyObject!) { if (segue.identifier == "BackToCalculator") { var vc:FirstViewController = …

ios swift tableview segue iboutlet
All my IBOutlet are nil in viewDidLoad

I've created a UIViewController that we can call MyViewController1. When I call MyViewController1, all my IBOutlet are nil in viewDidLoad (…

ios uiviewcontroller iboutlet
When should I use Strong vs Weak for IBOutlets (further clarification)

I thought I understood it clearly from this question --> Should IBOutlets be strong or weak under ARC? but …

objective-c cocoa iboutlet
Swift, two issues. 1) weak var 2) bang operator for @IBOutlet

Per: @IBOutlet weak var nameLabel: UILabel! Whenever I declare my IBOutlets, i just use var instead of weak var. But …

swift operators automatic-ref-counting iboutlet