0
我試圖用我的Data.plist
文件的內容填充UTTableView
。 我需要將此加載到NSMutableArray
。 這是多遠我就來了:iOS用Plist中的數據填充UITableView
(查看有沒有加載):
NSString *PlistPath = [[NSBundle mainBundle] pathForResource:@"Data" ofType:@"plist"];
Array = [[NSMutableArray alloc] initWithContentsOfFile:PlistPath];
[Array addObject:[[NSMutableDictionary alloc] initWithObjectsAndKeys:@"Testing 1", @"name", nil]];
而在CellForRowAtIndexPath
課程:
cell.textLabel.text = [Array objectAtIndex:indexPath.row];
我在Data.plist
文件(圖片)寫了這個:
現在,當我運行的應用程序。我TableView
保持爲空。
感謝您的時間和幫助!
三江源這麼多! – Ruub020