我有一个 plist 文件,其中包含 6 个项目。
当我将它加载到一个数组中并在表格视图中显示它时,它没有像上面那样排序,看起来像这样:
这是我正在使用的代码:
NSString* plistPath = [[NSBundle mainBundle] pathForResource:@"ghazal2" ofType:@"plist"];
myDictionary = [[NSDictionary alloc] initWithContentsOfFile:plistPath];
myArray = [myDictionary allKeys];
我使用时它仍然未排序allValues
我怎样才能使它正确?