Perguntas com a marcação «ibaction»

159
IBOutlet e IBAction

Qual é o objetivo de usar IBOutlets e IBActions no Xcode e no Interface Builder? Faz alguma diferença se eu não usar IBOutlets e IBActions? Rápido: @IBOutlet weak var textField: UITextField! @IBAction func buttonPressed(_ sender: Any) { /* ... */ } Objetivo-C: @property (nonatomic, weak)...