gpt4 book ai didi

objective-c - 加载plist时数组下标不是整数

转载 作者:塔克拉玛干 更新时间:2023-11-02 09:48:10 24 4
gpt4 key购买 nike

我是 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;
}

最佳答案

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

有关非数字下标的讨论,请访问 Objective-C Literals站点并向下滚动到标题为“订阅方法”的部分(Apple 有时称之为“装箱语法”或“装箱语法”),您会在那里看到它的讨论。我在答案的底部包含了其他引用资料。

第一个例子是array-style subscripting,用于查找数组中的值:

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 的下标的使用仅限于此方法。但是该项目已重构为使用“现代 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];

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

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

有关详细信息,请参阅:

关于objective-c - 加载plist时数组下标不是整数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13752496/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com