在 Xcode 和 Interface Builder 中使用 IBOutlets 和 IBActions 的目的是什么?
如果我不使用 IBOutlets 和 IBActions 会有什么不同吗?
迅速:
@IBOutlet weak var textField: UITextField!
@IBAction func buttonPressed(_ sender: Any) { /* ... */ }
目标-C:
@property (nonatomic, weak) IBOutlet UITextField *textField;
- (IBAction)buttonPressed:(id)sender { /* ... */ }