是否有SEL的包装器对象?

时间:2009-05-29 22:41:34

标签: iphone cocoa-touch uikit selector

我想将选择器添加到NSMutableArray。但由于它们是不透明的类型而没有物体,这不起作用,对吧?我可以使用包装器对象吗?或者我必须创建自己的?

3 个答案:

答案 0 :(得分:9)

您可以将其包装在NSValue实例中,如下所示:

SEL mySelector = @selector(performSomething:);
NSValue *value = [NSValue value:&mySelector withObjCType:@encode(SEL)];

然后为您的NSMutableArray实例添加值。

答案 1 :(得分:5)

您可以将选择器的NSString名称存储在数组中并使用

SEL mySelector = NSSelectorFromString([selectorArray objectAtIndex:0]);

从存储的字符串生成选择器。

此外,您可以使用类似

的内容将选择器打包为NSInvocation
NSInvocation *invocation = [NSInvocation invocationWithMethodSignature:[self methodSignatureForSelector:mySelector]];

[invocation setTarget:self];
[invocation setSelector:mySelector];
[invocation setArgument:&arg atIndex:2];
[invocation retainArguments];

然后可以将此NSInvocation对象存储在数组中并稍后调用。

答案 2 :(得分:2)

NSValue valueWithPointer / pointerValue同样有效。

如果你想这样做,你只需要知道你不能序列化数组(即将它写入文件),使用NSStringFromSelector方法。

这些都是将选择器放入NSValue对象的有效方法:

    id selWrapper1 = [NSValue valueWithPointer:_cmd];
    id selWrapper2 = [NSValue valueWithPointer:@selector(viewDidLoad)];
    id selWrapper3 = [NSValue valueWithPointer:@selector(setObject:forKey:)];
    NSString *myProperty = @"frame";
    NSString *propertySetter = [NSString stringWithFormat:@"set%@%@:",
                                [[myProperty substringToIndex:1]uppercaseString],
                                [myProperty substringFromIndex:1]];

    id selWrapper4 = [NSValue valueWithPointer:NSSelectorFromString(propertySetter)];

    NSArray *array = [NSArray arrayWithObjects:
                      selWrapper1,
                      selWrapper2,
                      selWrapper3,
                      selWrapper4, nil];

    SEL theCmd1 = [[array objectAtIndex:0] pointerValue];
    SEL theCmd2 = [[array objectAtIndex:1] pointerValue];
    SEL theCmd3 = [[array objectAtIndex:2] pointerValue];
    SEL theCmd4 = [[array objectAtIndex:3] pointerValue];