我不知道爲什麼我不斷收到這個錯誤解析問題預期']',任何幫助將不勝感激。Xcode Parse Issue Expected']'
locationManager didUpdateToLocation FromLocation
- (void)locationManager:(CLLocationManager *)manager
didUpdateToLocation:(CLLocation *)newLocation
fromLocation:(CLLocation *)oldLocation {
NSLog(@"%@", newLocation);
self.speedView.text = [[NSString stringWithFormat:@"%d", (speedCount)
I Receive the error on this line [newLocation speed]];
}
你能格式化你的問題好一點。這很難閱讀 – Iowa15
錯誤信息說明了一切。看起來你有太多的]。數它們,看看它們是否匹配。 – Aaron
是的,這是問題,感謝您的幫助球員 – mrorgon