我有一个appDelegate,用于初始化一个名为LocationService的类的实例。 我只想通过init传递一个这个类将运行的方法来传递给这个实例。
我遇到了这个例外:
2011-08-16 20:38:15.233 WalklogAnywhere[8258:307] -[LocationService setBackgroundActionMethod:]: unrecognized selector sent to instance 0x17a740
2011-08-16 20:38:15.249 WalklogAnywhere[8258:307] *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[LocationService setBackgroundActionMethod:]: unrecognized selector sent to instance 0x17a740'
*** Call stack at first throw:
(
0 CoreFoundation 0x314d0987 __exceptionPreprocess + 114
1 libobjc.A.dylib 0x319a149d objc_exception_throw + 24
2 CoreFoundation 0x314d2133 -[NSObject(NSObject) doesNotRecognizeSelector:] + 102
3 CoreFoundation 0x31479aa9 ___forwarding___ + 508
4 CoreFoundation 0x31479860 _CF_forwarding_prep_0 + 48
5 WalklogAnywhere 0x00004013 -[LocationService initWithBackgroundMethod:] + 206
6 WalklogAnywhere 0x0000246b -[WalklogAnywhereAppDelegate application:didFinishLaunchingWithOptions:] + 110
7 UIKit 0x338dabc5 -[UIApplication _callInitializationDelegatesForURL:payload:suspended:] + 772
8 UIKit 0x338d6259 -[UIApplication _runWithURL:payload:launchOrientation:statusBarStyle:statusBarHidden:] + 272
9 UIKit 0x338a248b -[UIApplication handleEvent:withNewEvent:] + 1114
10 UIKit 0x338a1ec9 -[UIApplication sendEvent:] + 44
11 UIKit 0x338a1907 _UIApplicationHandleEvent + 5090
12 GraphicsServices 0x35d66f03 PurpleEventCallback + 666
13 CoreFoundation 0x314656ff __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE1_PERFORM_FUNCTION__ + 26
14 CoreFoundation 0x314656c3 __CFRunLoopDoSource1 + 166
15 CoreFoundation 0x31457f7d __CFRunLoopRun + 520
16 CoreFoundation 0x31457c87 CFRunLoopRunSpecific + 230
17 CoreFoundation 0x31457b8f CFRunLoopRunInMode + 58
18 UIKit 0x338d5309 -[UIApplication _run] + 380
19 UIKit 0x338d2e93 UIApplicationMain + 670
20 WalklogAnywhere 0x000021bb main + 70
21 WalklogAnywhere 0x00002170 start + 40
)
terminate called after throwing an instance of 'NSException'
这是我的app delegate类方法,用于初始化LocationService实例:
-(void) backgroundLocationUpdate {
NSLog(@"location is updated in background");
}
#pragma mark -
#pragma mark Application lifecycle
- (BOOL)application:(UIApplication *)application
didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
// Override point for customization after application launch.
[self.window makeKeyAndVisible];
locationService = [[LocationService alloc]
initWithBackgroundMethod:@selector(backgroundLocationUpdate:)];
[locationService startForegroundService];
storageService = [[StorageService alloc] init];
[self loadApplicationData];
return YES;
}
这是LocationService类方法:
-(id) initWithBackgroundMethod:(SEL)selector {
self = [super init];
if (self != nil) {
self.locationManager = [[CLLocationManager alloc] init];
self.locationManager.delegate = self;
locationManager.desiredAccuracy = kCLLocationAccuracyBest;
self.backgroundActionMethod = selector;
}
return self;
}
请帮帮我们。
非常感谢!
答案 0 :(得分:2)
选择器只是方法的名称。它与类无关,也与类的实例无关。
如果你想使用选择器进行一种回调,你必须提供一个目标对象和选择器。
然后,使用继承自NSObject的performSelector
方法将选择器调用到目标对象。
有关错误检查,请参阅respondToSelector
方法。
答案 1 :(得分:1)
删除backgroundLocationUpdate旁边的冒号,如下所示:
[self.window makeKeyAndVisible]; locationService = [[LocationService alloc] initWithBackgroundMethod:@selector(backgroundLocationUpdate)];
冒号使其查找带有(id)发送者参数的方法。
答案 2 :(得分:1)
错误来自这一行:
self.backgroundActionMethod = selector;
我猜你实际上没有backgroundActionMethod属性,因为没有-setBackgroundActionMethod:
方法。