我試圖在UITableView
的同一個錶行中顯示兩行文本。如何在同一個UITableViewCell中顯示兩行?
這可能嗎?
我嘗試過不同的事情,但我無法找到任何有關它或弄清楚。任何幫助,你可以提供將不勝感激。
- (UITableViewCell *)tableView:(UITableView *)tableView
cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:CellIdentifier] autorelease];
}
phonesAppDelegate *appDelegate = (phonesAppDelegate *)[[UIApplication sharedApplication] delegate];
HLPFoundPhones *p = (HLPFoundPhones *)[appDelegate._phones objectAtIndex:indexPath.row];
NSString *subtitle = [NSString stringWithFormat:@"Found on location (",p.x,@",",p.y,@") on date ", p.date];
cell.textLabel.text = p._name;
cell.detailTextLabel.text = subtitle;
return cell;
}
你已經有一些代碼?請告訴我們,給你提示如何解決你的問題更容易。 – 2011-05-07 09:06:40
在輸出到UITable我使用的行時會看到.. 'cell.textLabel.text = p._name;' 現在我想輸出假設px到同一個單元...我怎麼能這樣做..兩者都是NSStrings ... sry ima新手.. – Hadi 2011-05-07 09:11:42