美文网首页
Swift 的一些莫名的警告或错误

Swift 的一些莫名的警告或错误

作者: 申申申申申 | 来源:发表于2017-07-05 13:09 被阅读95次
    1. ** Type *** does not conform to protocol *** **
      原因: vc 该 vc 中没有实现 protocol 的 requred func


    2. Comparing non-optional value of type '(UIButton) -> ()' to nil always returns true

      原因:初始化的时候已经确定了不会为nil,想当与在比较 1 != 0 必定成立
    var addBtnClick:(_ sender:UIButton) -> () = { _ in }
    

    相关文章

      网友评论

          本文标题:Swift 的一些莫名的警告或错误

          本文链接:https://www.haomeiwen.com/subject/stifhxtx.html