使用下面的代碼,我可以啓動一個HTTP請求到我的服務器,並通過Alamofire和Swiftyjson檢索JSON對象。Alamofire/Swiftyjson - 將JSON類型傳遞給Objc協議代理
但我無法從Swiftyjson傳遞自定義類JSON作爲我的委託方法的參數。
我該怎麼辦才能解決這個錯誤?
,錯誤代碼行:
optional func didReceiveUserInfo(userInfo: JSON) //This the line I get the error
錯誤: 方法不能被一個@objc協議,因爲參數的類型不能在被表示在一個構件的Objective-C
這裏是滿代碼我使用:
import UIKit
import Alamofire
import SwiftyJSON
@objc protocol UserModelDelegate {
optional func didReceiveUserInfo(userInfo: JSON) //This is the line I get the error
}
class UserModel: NSObject, NSURLSessionDelegate {
// Instantiate the delegate
var delegate: UserModelDelegate?
override init() {
super.init()
}
func getUserInfo(token: String) {
let url = "http://test.app/api/userInfo"
let headers = [
"Authorization":"Bearer \(token)",
"Content-Type": "application/x-www-form-urlencoded"
]
Alamofire.request(.GET, url, headers: headers).responseJSON { response in
switch response.result {
case .Success(let data):
let json = JSON(data)
self.delegate?.didReceiveUserInfo?(json) //This is where I pass the JSON custom class type as an argument
case .Failure(let error):
print("Request failed with error: \(error)")
}
}
}
}
我建議您將'var delegate:UserModelDelegate?'更改爲'weak var delegate:UserModelDelegate?'以避免保留週期。 – bitsoverflow