2

我对 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;
}
4

2 回答 2

3

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

有关非数字下标的讨论,请访问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"];

归根结底,也许你会很幸运,这种下标的使用NSArray仅限NSDictionary于这种方法。但是该项目已被重构为使用“Modern Objective-C”,您可能会看到其他 Modern 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];

根据您的项目有多少现代 Objective-C,您可能需要执行相当多的编辑。或者,如果您可以升级到 Xcode 4.5 或更高版本,您将能够顺利编译此代码。

Xcode 4.5 中还有很多其他非常有用的构造,包括新的NSDictionary枚举方法、类型化枚举、字符串文字等。你应该观看 Modern Objective-C 的 WWDC 2012 会议,这样你就会知道你在做什么坚持使用旧的编译器会错失良机,因此您也可以弄清楚如何破译您可能会在 Stack Overflow 或其他地方看到的现代 Objective-C 代码。

有关更多信息,请参阅:

于 2012-12-06T21:56:00.790 回答
1

这是因为显然您使用的旧编译器无法识别新的对象文字语法。如果您不想升级,请在NSArray和上使用适当的实例方法NSDictionary

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

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

于 2012-12-06T21:25:05.397 回答