Qual è lo scopo dell'utilizzo di IBOutlet e IBActions in Xcode e Interface Builder?
Fa differenza se non utilizzo IBOutlets e IBActions?
Swift:
@IBOutlet weak var textField: UITextField!
@IBAction func buttonPressed(_ sender: Any) { /* ... */ }
Objective-C:
@property (nonatomic, weak) IBOutlet UITextField *textField;
- (IBAction)buttonPressed:(id)sender { /* ... */ }