«ibaction» etiketlenmiş sorular

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 { /* ... */ }

6
Hareket tanıyıcı ve düğme eylemleri
Şuna benzeyen bir görünüm hiyerarşim var: UIView (A) UIView > UIImageView UIView > UIView (B) UIView > UIView (B) > Rounded Rect Button UIView > UIView (B) > UIImageView UIView > UIView (B) > UILabel UIView'uma (B) hareket tanıyıcı (lar) ekledim. Karşılaştığım sorun, UIView (B) içindeki Rounded Rect Button için …
Sitemizi kullandığınızda şunları okuyup anladığınızı kabul etmiş olursunuz: Çerez Politikası ve Gizlilik Politikası.
Licensed under cc by-sa 3.0 with attribution required.