我是 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 *)tableViewUITableView *)tableView cellForRowAtIndexPathNSIndexPath *)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 有时称之为“装箱语法”或“装箱语法”)的部分,您会在此处看到它的讨论。我在答案的底部包含了其他引用资料。
第一个例子是数组样式下标,用于在数组中查找值:
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 构造,例如 array literals:
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/
欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) | Powered by Discuz! X3.4 |