Objective-C:使用可变参数调用选择器

时间:2015-12-09 09:05:42

标签: ios objective-c

我遇到了以下问题,我已经尝试了很多。我还阅读了Stackoverflow中的其他问题,如: Objective-C: Calling selectors with multiple arguments 和选择器的Cocoa核心能力,但我正在寻找将变量的参数传递给选择器的最佳方法。

-(void) runAllStatusDelegates : (SEL)selector
{
 for (NSValue *val in self.statusDelegates)
 {
  id<StatusDelegate> delegate = val;
  if ([delegate respondsToSelector:selector])
  { 
   [delegate performSelector:selector];
  }
 }
}

此方法负责调用委托内的方法。参数是选择器。我的问题是选择器可以有0 - 3个参数,如下所示。

-(void) handleBluetoothEnabled:(BOOL)aEnabled
{
 if (aEnabled)
 {
  [self.statusDelegate bluetoothEnabled];
  if (_storedPenSerialNumber != nil && ![_storedSerialNumber isEqual:kUnknownPenID])
   {
    [self runAllStatusDelegates: @selector(penConnected : _storedSerialNumber : _storedFirmware:)];
   }
 }
 else
 {
  [self.statusDelegate bluetoothDisabled];
 }
}

-(void) handleChooseDevice:(BluetoothDeviceList*)aDevices
{
 NSLog(@"Handle Choose Device");
 [self runAllStatusDelegates: @selector(chooseDevice:aDevices:)];
}


-(void) handleDiscoveryStarted
{
 NSLog(@"Discovery Started");
 [self runAllStatusDelegates: @selector(searchingForBluetoothDevice)];
 [self.statusDelegate handleStatus:@"Searching for your digipen"];
}

此实现不起作用,因为performSelector无法识别选择器。

我还尝试使用 @selector(penConnected::) withObject:_storedSerialNumber 来实现它,但是我必须使用其他参数实现另一个方法,我不希望这样。 我是Objective-c的新手,所以我对所有可能性都不太熟悉。

我的想法是将一个String和一个参数数组传递给 runAllStatusDelegates 并在该方法中构建选择器,但这是最好的方法还是有更方便的方法?

3 个答案:

答案 0 :(得分:2)

对于复杂的签名,我个人不是NSInvocation的粉丝。它非常适合在队列中排队一个简单的函数调用并在需要时运行它,但对于你的情况,你知道选择器,所以你不需要去调用路由。我通常会发现,如果您实际上并不知道要在编译时调用的选择器,调用更有用,可能由您的API等决定。

所以我要做的就是将一个块传递给你的runAllStatusDelegates方法,该方法将对你的所有代表执行:

- (void)performSelector:(SEL)selector againstAllDelegatesWithExecutionBlock:(void (^)(id<StatusDelegate>))blockToExecute
{
    for (id<StatusDelegate> delegate in self.statusDelegates)
    {
        if ([delegate respondsToSelector:selector])
        {
            blockToExecute(delegate);
        }
    }
}

然后当你想用一个函数调用你的代理时,它看起来像这样:

[self performSelector:@selector(handleAnswerOfLifeFound)
againstAllDelegatesWithExecutionBlock:^(id<StatusDelegate> delegate){
    [delegate handleAnswerOfLifeFound];
}];

我想唯一的缺点可能是你可以改变选择器并将不同的功能传递给块。我如何解决这个问题是通过实际确保并非所有方法都是可选的,或者如果它们是可选的,以便在块内进行实际检查,这将清除签名:

- (void)callAllDelegatesWithBlock:(void (^)(id<StatusDelegate>))blockToExecute
{
    for (id<StatusDelegate> delegate in self.statusDelegates)
    {
            blockToExecute(delegate);
    }
}

然后是您对可选方法的实际使用情况:

[self callAllDelegatesWithBlock^(id<StatusDelegate> delegate){
    if([delegate respondsToSelector:@selector(handleAnswerOfLifeFound)]){
        [delegate handleAnswerOfLifeFound];
    }
}];

仍然容易出错,但至少有点整洁。

答案 1 :(得分:1)

您可以在这种情况下使用NSInvocation

SEL theSelector = @selector(yourSelector:);
NSMethodSignature *aSignature = [NSMethodSignature instanceMethodSignatureForSelector:theSelector];
NSInvocation *anInvocation = [NSInvocation invocationWithMethodSignature:aSignature];
[anInvocation setSelector:theSelector];
[anInvocation setTarget:self];
[anInvocation setArgument:&arg1 atIndex:2];
[anInvocation setArgument:&arg2 atIndex:3];
[anInvocation setArgument:&arg3 atIndex:4];
[anInvocation setArgument:&arg4 atIndex:5];
//Add more

请注意,索引0和1处的参数是为目标和选择器保留的。

了解更多信息http://www.cocoawithlove.com/2008/03/construct-nsinvocation-for-any-message.html

答案 2 :(得分:1)

您可以将参数绑定到选择器

NSDictionary *argInfo=@{@"arg1":arg1,@"arg2":arg2,...};
objc_setAssociatedObject(self,@selector(chooseDevice:aDevices:),argInfo,OBJC_ASSOCIATION_COPY)
[self runAllStatusDelegates: @selector(chooseDevice:aDevices:)];

然后在

-(void) runAllStatusDelegates : (SEL)selector
{
 for (NSValue *val in self.statusDelegates)
 {
  id<StatusDelegate> delegate = val;
  if ([delegate respondsToSelector:selector])
  { 

   NSDictionary *argInfo=objc_getAssociatedObject(self, selector);
   //call the fun use arginfo
  }
 }
}