Я заполняю UITableView NSDictionary и dictionaryWithContentsOfFile plist.
В plist у меня есть 3 строки, каждая строка имеет массив.
Я не знаю, каким будет идентификатор / индекс строки.
Under:
// Customize the appearance of table view cells.
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];
}
// Configure the cell.
cell.textLabel.text = @"Blah";
cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
return cell;
}
Для cell.textLabel.text, как мне сделать что-то вроде [self.myList getKey]; где getKey вернет ключ / идентификатор строки?