构建项目时,我在最新的Xcode8中遇到以下错误。
@_ 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
}
提前致谢。
答案 0 :(得分:1)
确保从init()方法中调用super.init()
(您还需要传递任何相关参数)。