-
** Type *** does not conform to protocol *** **
原因: vc 该 vc 中没有实现 protocol 的 requred func
-
Comparing non-optional value of type '(UIButton) -> ()' to nil always returns true
原因:初始化的时候已经确定了不会为nil,想当与在比较 1 != 0 必定成立
var addBtnClick:(_ sender:UIButton) -> () = { _ in }
网友评论