嘿,我想做一个聊天演示。所以当我为它打开 UITableView 时,它应该从最后一个项目显示,上一个项目应该在上边。即,我想在用户打开时自动滚动我的 UITableView 到最后一行聊天画面。我该怎么办?
我的代码是-
cell = [tv dequeueReusableCellWithIdentifier:@"Cell"];
if (cell == nil)
{
cell = [[[UITableViewCell alloc] initWithFrame:CGRectZero reuseIdentifier:nil] autorelease];
}
[lblName setFont:[UIFont fontWithName:@"Arial" size:12]];
lblName.lineBreakMode = NSLineBreakByWordWrapping;
lblName.numberOfLines = 0;
lblName.text=[arrUsername objectAtIndex:indexPath.row];
lblName.textColor = [UIColor blackColor];
[lblName setBackgroundColor:[UIColor grayColor]];
if ([[arrCommentUid objectAtIndex:indexPath.row] isEqualToString:@"1"]) {
[lblName setTextAlignment:NSTextAlignmentLeft];
}
else
请帮忙!!它只是 UITableView 的 optional.cell 的代码