ios - Value of type '() -> ()' can never be nil
怪我咯
怪我咯 2017-04-18 09:27:49
0
1
412

1.升级Xcode之后,之前代码报错,报 Value of type '() -> ()' can never be nil, comparison isn't allowed

2.相关代码

if (self.action == nil) {
            return;
        }

self.action == nil 报错了。

 if refreshTempAction != nil {
                    refreshStatus = .Refresh
                    self.startAnimation()
                    UIView.animateWithDuration(0.25, animations: { () -> Void in
                        if scrollView.contentInset.top == 0 {
                            scrollView.contentInset = UIEdgeInsetsMake(self.getNavigationHeight(), 0, scrollView.contentInset.bottom, 0)
                        }else{
                            scrollView.contentInset = UIEdgeInsetsMake(ZLSwithRefreshHeadViewHeight + scrollView.contentInset.top, 0, scrollView.contentInset.bottom, 0)
                        }
                        
                    })

refreshTempAcstion != nil 报错。

怪我咯
怪我咯

走同样的路,发现不同的人生

全部回覆(1)
阿神

看了你的“亂糟糟”的問題和與 @酷酷的哀殿 的評論後回答:

你定義的 action 都是不可空型,當然不能去判斷是否為空,Xcode 必然報錯。
你可以把你的 (() -> ()) 或者 (() -> Void) 改为 (() -> Void)?

PS: 以後來SegmentFault 提問前,先稍微學習下Markdown,或者使用它的格式化工具,你問題的排版太亂,讓想幫你解答的人也很無奈,很難看明白你的問題;還有,不論是寫程式碼還是做任何事,都要用心(你有單字拼字錯誤);我是不是管太寬了

熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!