加载plist时,数组下标不是整数

时间:2012-12-06 21:02:06

标签: objective-c ios nsmutablearray plist nsdictionary

我是iOS / Objective C的新手,但我已经用多种语言编程了很多年。

我们公司已经采用现有的iOS应用程序进行修改。现在我正在尝试加载plist文件并用它的内容填充UITableView。我的代码创建单元格时出错,我不知道发生了什么。

这是我的plist文件,非常简单:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
    <array>
        <dict>
            <key>title</key><string>Un</string>
            <key>subtitle</key><string>Subtitle</string>
        </dict>
        <dict>
            <key>title</key><string>Deux</string>
            <key>subtitle</key><string>Subtitle</string>
        </dict>
    </array>
</plist>

这是我将plist文件加载到内存中的地方:

- (void)viewDidLoad {
    [super viewDidLoad];
    NSString *plistCatPath = [[NSBundle mainBundle] pathForResource:@"resources" ofType:@"plist"];
    resources = [NSMutableArray arrayWithContentsOfFile:plistCatPath];
}

这是我尝试访问属性的地方。我在编译时遇到错误时添加了注释:

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    int index = (int) indexPath.row;
    UITableViewCell *cell =[factory cellOfKind:@"cell" forTable:tableView];
    [cell setAccessoryType:UITableViewCellAccessoryDisclosureIndicator];
    UILabel *lblTitle = (UILabel*)[cell viewWithTag:2];
    UILabel *lblSubtitle = (UILabel*)[cell viewWithTag:3];
    NSDictionary *resource = resources[index]; // incompatible types in initialization
    NSString *row_title = resource[@"title"]; // array subscript is not an integer
    NSString *row_subtitle = resource[@"subtitle"]; // array subscript is not an integer
    [lblTitle setText: row_title];
    [lblSubtitle setText: row_subtitle];
    return cell;
}

2 个答案:

答案 0 :(得分:3)

正如H2CO3所说,这种语法是对象下标的一部分,它是“Modern Objective-C”的一部分,它与Xcode 4.4和4.5一起发布。

有关非数字下标的讨论,请访问Objective-C Literals网站并向下滚动到标题为“订阅方法”的部分(Apple有时称之为“装箱语法”或“盒装语法”),你会看到它在那里讨论过。我在答案的底部加入了其他参考文献。

第一个例子是数组式下标,用于查找数组中的值:

NSArray *resources = ... // however it was defined
NSDictionary *resource = resources[index];

编译器将其转换为:

NSDictionary *resource = [resources objectAtIndexedSubscript:index];

如果您不想升级计算机上的Xcode(和编译器),可以替换为只需用传统的objectAtIndex语法替换数组样式的下标:

NSDictionary *resource = [resources objectAtIndex:index];

同样,你向我们展示的第二个例子是非数字下标。这是字典式下标

NSString *row_title = resource[@"title"];

编译器将转换为:

NSString *row_title = [resource objectForKeyedSubscript:@"title"];

而且,如果您不想升级Xcode(及其编译器),传统的等价物是:

NSString *row_title = [resource objectForKey:@"title"];

最重要的是,也许你会很幸运,NSArrayNSDictionary的下标使用仅限于此方法。但是该项目已被重构为使用“Modern Objective-C”,您可能会看到其他现代Objective-C构造,例如数组文字

NSArray *array = @[@"one", @"two", @"three"];

如果你在这个项目的任何地方都有,你的旧编译器将无法理解该数组文字语法,你必须用以下代码替换它:

NSArray *array = [NSArray arrayWithObjects:@"one", @"two", @"three", nil];

同样,您可能会看到字典文字

NSDictionary *dictionary = @{@"key1" : @"value1", @"key2" : @"value2"};

您必须将其替换为:

NSDictionary *dictionary = [NSDictionary dictionaryWithObjectsAndKeys:@"value1", @"key1", @"value2", @"key2", nil];

最后,您可能还有数字文字,例如:

NSNumber *number = @4;
NSNumber *done = @YES;

这相当于

NSNumber *number = [NSNumber numberWithInt:4];
NSNumber *done = [NSNumber numberWithBool:YES];

根据您的项目有多少Modern Objective-C,您可能需要进行相当多的编辑。或者,如果您可以升级到Xcode 4.5或更高版本,并且您将能够编译此代码而不会发生意外。

Xcode 4.5中还有很多其他非常有用的结构,包括新的NSDictionary枚举方法,类型化的枚举,字符串文字等。您应该观看现代Objective-C上的WWDC 2012会话,所以通过坚持使用旧的编译器,你将会知道你错过了什么,这样你就可以弄清楚如何破译你可能会在Stack Overflow或其他地方发布的现代Objective-C代码。

有关详细信息,请参阅:

答案 1 :(得分:1)

这是因为显然您使用的旧编译器无法识别新的对象文字语法。如果您不想升级,请使用NSArrayNSDictionary上的相应实例方法:

NSDictionary *resource = [resources objectAtIndex:index];
NSString *row_title = [resource objectForKey:@"title"];
NSString *row_subtitle = [resource objectForKey:@"subtitle"];

如果你选择这种方法,你将保持向后兼容性,这很好。