我定义了下面的列表swift类,并尝试从viewcontroller调用sfAuthenticateUser。但是Xcode intellisense列出了错误的参数类型,而不是我定义的类型。
错误:无法将'String'类型的值转换为预期的参数类型'APISFAuthentication'
Xcode版本7.1(7B91b)
//查看Controller方法调用如下
@IBAction func ActionNext(sender: AnyObject) {
let sss = APISFAuthentication.sfAuthenticateUser(<#T##APISFAuthentication#>)
}
//类定义如下
class APISFAuthentication {
init(x: Float, y: Float) {
}
func sfAuthenticateUser(userEmail: String) -> Bool {
let manager = AFHTTPRequestOperationManager()
let postData = ["grant_type":"password","client_id":APISessionInfo.SF_CLIENT_ID,"client_secret":APISessionInfo.SF_CLIENT_SECRET,"username":APISessionInfo.SF_GUEST_USER,"password":APISessionInfo.SF_GUEST_USER_PASSWORD]
manager.POST(APISessionInfo.SF_APP_URL,
parameters: postData,
success: { (operation, responseObject) in
print("JSON: " + responseObject.description)
},
failure: { (operation, error) in
print("Error: " + error.localizedDescription)
})
return true;
}
}
答案 0 :(得分:3)
问题是你尝试在没有实际实例的情况下调用实例函数。
您必须创建一个实例并在该实例上调用该方法:
let instance = APISFAuthentication(...)
instance. sfAuthenticateUser(...)
或将函数定义为类函数:
class func sfAuthenticateUser(userEmail: String) -> Bool {
...
}
<强>解释强>
Xcode为您提供了什么以及让您感到困惑的是,该类提供了通过向其传递实例来获取对其某些实例函数的引用的功能:
class ABC {
func bla() -> String {
return ""
}
}
let instance = ABC()
let k = ABC.bla(instance) // k is of type () -> String
k
现在 函数bla
。您现在可以通过k
等来致电k()