0
我試圖從plist中獲取子元素SHOP
。 plist中是像這樣:從pList獲取對象數據並填充到cellForIndexPath中
設置是一個截面。
我嘗試使用以下,但不知道如何把它放在一個cellForIndexPath
NSDictionary *region = [self.dict valueForKey:@"Settings"];
NSString *name = [region valueForKey:@"Shop"];
NSLog(@"%@", name);
我的plist是像這樣:
NSString *path = [[NSBundle mainBundle] pathForResource:@"PropertyList" ofType:@"plist"];
NSDictionary *tempDict = [[NSDictionary alloc] initWithContentsOfFile:path];
self.dict = tempDict;
NSArray *tempArray = [[NSArray alloc] init];
self.namesArray = tempArray;
self.sectionArray = [self.dict allKeys];
'Settings'是一個數組,但是您正在向它發送'-objectForKey:'。它必須崩潰。 – Michael
我怎麼會把它放在cellforindexpath中? –