我是iPhone新手。有人可以向我解释这个方法声明:
- (void)locationManager:(CLLocationManager *)manager
didFailWithError:(NSError *) error{
这是我猜的:
(void)
- 方法不返回任何内容locationManager:
- ??? (CLLocationManager *)manager
- 这看起来像一个参数。到CLLocationManager。 didFailWithError:
- 这似乎是方法名称(NSError *) error
- 这似乎也是一个参数。我有点困惑为什么两个地方都有参数。 答案 0 :(得分:2)
这是Objective C,而不是常规C,因此函数名称中插入了参数。 locationManager
和didFailWithError
都是函数名称的一部分。
答案 1 :(得分:1)