基本上,我想知道.primaryActionTriggered的.touchUpInside和UIButton controlEvent之间有什么区别,因为它们似乎是类似触发的。
.primaryActionTriggered
.touchUpInside
UIButton
.primaryActionTriggered不仅限于按钮,还包括控件。
对于大多数控件,它将在.valueChanged上触发,除了UIButton会在.touchUpInside处触发,对于UITextField会在.didEndOnExit处触发。
.valueChanged
UITextField
.didEndOnExit