由于信号命令失败:分段错误:11(初始化时)

时间:2017-01-16 08:49:19

标签: ios swift xcode

构建项目时,我在最新的Xcode8中遇到以下错误。

  1. 发射IR SIL功能时
  2.   

    @_ TFC10Test_UAT15IOS_CNXResponsecfT6nsdataGSqV10Foundation4Data_10nsresponseGSqCSo11URLResponse_7nserrorGSqCSo7NSError__S0_ for" init' at /Users/test/Desktop/Test/AsyncRequest.swift:255:5

    以下是我的255行代码。我不知道导致此错误的部分。请指教。

      init(nsdata:Data?, nsresponse:URLResponse?, nserror:NSError?) {
    
            data = nsdata!
            response = nsresponse!
            error = nserror
        }
    

    提前致谢。

1 个答案:

答案 0 :(得分:1)

确保从init()方法中调用super.init()(您还需要传递任何相关参数)。