I'm very new to iOS / Objective C, but I've been programming for a number of years in a number of different languages.
Our company has taken on an existing iOS application for modifications. Right now I'm trying to load a plist file and populate a UITableView with it's contents. I'm getting errors with my code to create the cell and I'm not sure what's going on.
Here is my plist file, very simple:
<?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>
Here is where I load the plist file into memory:
- (void)viewDidLoad {
[super viewDidLoad];
NSString *plistCatPath = [[NSBundle mainBundle] pathForResource:@"resources" ofType:@"plist"];
resources = [NSMutableArray arrayWithContentsOfFile:plistCatPath];
}
And here is where I try to access the properties. I've added comments where I'm getting errors at compile time:
- (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;
}
clang? GCC and old Clangs don't recognize this construct. – H2CO3 Dec 6 '12 at 21:05NSDictionaryobjects that have non-numeric subscripts. TheNSArrayobjects have numeric subscripts (which is, itself, a new feature). – Rob Dec 6 '12 at 22:15