10
IBOutlet ve IBAction
Xcode ve Interface Builder'da IBOutlet'leri ve IBActions'ı kullanmanın amacı nedir? IBOutlet'leri ve IBActions'ı kullanmazsam herhangi bir fark yaratır mı? Swift: @IBOutlet weak var textField: UITextField! @IBAction func buttonPressed(_ sender: Any) { /* ... */ } Objective-C: @property (nonatomic, weak) IBOutlet UITextField *textField; - (IBAction)buttonPressed:(id)sender { /* ... */ }