我必须返回此函数的值。我在此行中遇到错误
func GetStation(url : String, completionHandler: (stationDictionary: NSDictionary) -> ()) {
getResonse(url, completionhandler: { (dict) -> NSDictionary in
completionHandler(stationDictionary: dict) // Error on this line
})
}
3条答案
按热度按时间jxct1oxe1#
"这肯定行"
"然后用它来“
yeotifhr2#
实际上,您可能会错误的代码getResonse...它应该像下面这样...
因此,您应该像下面这样调用GetStation ...
wb1gzix03#