objective-c - 将方法作为 SEL 参数传递给另一个类方法

标签 objective-c ios ios-4.2

我有一个 appDelegate,它初始化了一个名为 LocationService 的类的实例。
我只想通过 init 传递给这个实例这个类将运行的方法。

我得到了这个异常(exception):

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'

这是我的应用程序委托(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;
}

请帮帮我。
非常感谢!

最佳答案

选择器只是方法的名称。它与类无关,也与类的实例无关。

如果你想有一种回调,使用选择器,你必须提供一个目标对象以及选择器。

然后,使用 performSelector 调用目标对象的选择器。方法,继承自 NSObject。

有关错误检查,请参阅 respondToSelector方法。

关于objective-c - 将方法作为 SEL 参数传递给另一个类方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7082547/

相关文章:

objective-c - 在 sprite.runAction 之后调用 Block 时崩溃

ios - 单击按钮更改标签上的文本

第一次在 objective-c 中创建程序循环

ios - 如何在iOS中提醒用户有关RAM硬盘或电池的信息

ios - UITextView 崩溃

ios - iPad 中的 PDF 搜索和突出显示

iphone - iOS 4.2,寻找操纵 iPhone 4 相机焦距的方法

iphone - 如何在iOS 4.2中打印?

iphone - UIImagePickerController 媒体类型 kUTTypeMovie 运行时异常

ios - 从 UitableView 项目中获取值