- (UITableViewCell *)tableView:(UITableView *)tableView
cellForRowAtIndexPath:(NSIndexPath *)indexPath {
myCell *cell = (myCell *)[tableView
dequeueReusableCellWithIdentifier:kCellIdentifier2];
if (cell == nil) {
cell = [[[myCell alloc] initWithFrame:CGRectZero
reuseIdentifier:kCellIdentifier2] autorelease];
}
NSDictionary *gameItem = [gamesData objectAtIndex:indexPath.row];
cell.titleLabel.text = [gameItem objectForKey:@"game"];
//configure cell
cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator //or whatever accessory type you need
return cell;
}