2

如您所知,Apple 为 NSNumber、NSDictionary、NSArray 等类提供了 @literals,因此我们可以通过这种方式创建对象,例如

NSArray *array = @[obj1, obj2];

所以我想知道,是否有办法为我自己的类创建这样的文字?例如,我想写smth。喜欢

MyClass *object = MyClass[value1, value2];

而且我不想写长解析器:)

4

2 回答 2

2

@语法是文字,这是Clang编译器的特性。由于其编译器功能NO,您无法定义自己的文字。

有关编译器文字的更多信息,请参阅Clang 3.4 文档 - Objective-C Literals

编辑:另外,我刚刚发现了这个有趣的 SO 讨论

编辑:正如 BooRanger 在评论中提到的,存在创建[]访问器(Collection Literals方式)来访问自定义对象的方法。它叫Object Subscripting. 使用它,您可以像这样访问自定义类中的任何内容myObject[@"someKey"]在NSHipster阅读更多内容。

这是我的“Subcriptable”对象的示例实现。例如简单,它只是访问内部字典。标题:

@interface LKSubscriptableObject : NSObject

//  Object subscripting
- (id)objectForKeyedSubscript:(id <NSCopying>)key;
- (void)setObject:(id)obj forKeyedSubscript:(id <NSCopying>)key;

@end

执行:

@implementation LKSubscriptableObject {

    NSMutableDictionary     *_dictionary;
}

- (id)init
{
    self = [super init];
    if (self) {
        _dictionary = [NSMutableDictionary dictionary];
    }
    return self;
}

- (id)objectForKeyedSubscript:(id <NSCopying>)key
{
    return _dictionary[key];
}

- (void)setObject:(id)obj forKeyedSubscript:(id <NSCopying>)key
{
    _dictionary[key] = obj;
}

@end

然后,您只需使用方括号即可访问此对象中的任何内容:

LKSubscriptableObject *subsObj = [[LKSubscriptableObject alloc] init];

subsObj[@"string"] = @"Value 1";
subsObj[@"number"] = @2;
subsObj[@"array"] = @[@"Arr1", @"Arr2", @"Arr3"];

NSLog(@"String: %@", subsObj[@"string"]);
NSLog(@"Number: %@", subsObj[@"number"]);
NSLog(@"Array: %@", subsObj[@"array"]);
于 2013-07-18T08:56:31.587 回答
1

你对这个语法好吗?

MyClass *object = MyClass(value1, value2);

只需像这样定义宏:

#define MyClass(objects...) [[MyClass alloc] initWithObjects: @[objects]];

编译器将允许类命名MyClass MyClass()宏。

于 2015-07-17T09:29:45.673 回答