NSNotification *notification = [NSNotification notificationWithName:@"locationObtained" object:self];
[[NSNotificationCenter defaultCenter]postNotification:notification];
我明白了[LocavoreRetroFirstViewController startServices]: unrecognized selector sent to instance 0x74c3070
- (void)listenForLocationCompletion{
[[NSNotificationCenter defaultCenter]addObserver:self
selector:@selector(startServices)
name:@"locationObtained"
object:nil];
}
- (void)startServices:(NSNotification *)notification{
}
我收到此错误的任何原因?