-1
我想調用另一個類中的函數。但他們並沒有迅速返回字典。如何解決這個問題?在Swift中返回值
在我ViewController
var dict = NSDictionary()
dict = temp.GetStation(myUrl)
在我的課堂
func GetStation(url : String) -> NSDictionary {
let dicts = NSDictionary()
getResonse(url, completionhandler: { (dict) -> NSDictionary in
// print(dict)
return dict
})
return dicts;
}
completionHandler(stationDictionary:dict)在這一行出現錯誤無法將type()的值轉換爲封閉類型Nsdictionary –
請檢查編輯的答案,謝謝 –
工作是否正常? –