Quel est le but d'utiliser IBOutlets et IBActions dans Xcode et Interface Builder?
Cela fait-il une différence si je n'utilise pas IBOutlets et IBActions?
Rapide:
@IBOutlet weak var textField: UITextField!
@IBAction func buttonPressed(_ sender: Any) { /* ... */ }
Objectif c:
@property (nonatomic, weak) IBOutlet UITextField *textField;
- (IBAction)buttonPressed:(id)sender { /* ... */ }