我想在表格視圖單元格中顯示數據,我如何完成此操作。請幫我如何在表格視圖單元格中顯示數據
-(UITableViewCell *) tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *feedsTableIdentifier = @"FeedsTableIdentifier";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:feedsTableIdentifier];
if (cell==nil) {
[[NSBundle mainBundle] loadNibNamed:@"FeedsTableViewCell" owner:self options:nil];
cell=tableViewCell;
self.tableViewCell=nil;
}
title=(UILabel *)[cell viewWithTag:1];
title.text=[NSString stringWithFormat:@"%d",indexPath.row];
postedBy=(UILabel*)[cell viewWithTag:2];
postedBy.text=[NSString stringWithFormat:@"%d",indexPath.row];
onDate = (UILabel *)[cell viewWithTag:3];
onDate.text=[NSString stringWithFormat:@"%d",indexPath.row];
return cell;
}
請幫幫我。
你是什麼意思顯示數據? – 2012-04-25 13:22:07
你想要什麼..這是你的代碼,或者你只是舉了例子來顯示你想要顯示的這種類型的數據 – Hiren 2012-04-25 13:35:59
我想設置title,postingby和ondate的值。這些是tableviewcell上的標籤 – Pradeep 2012-04-25 13:36:44