01.
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
02.
{
03.
static
NSString *simpleTableIdentifier =@
"Item"
;
04.
UITableViewCell *cell=[tableView dequeueReusableCellWithIdentifier:simpleTableIdentifier];
05.
if
(cell == nil){
06.
cell =[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:simpleTableIdentifier];
07.
}
08.
cell.textLabel.text = [tableData objectAtIndex:indexPath.row];
09.
return
cell;
10.
}