0

我需要在表格视图单元格中显示最后一个单元格记录。每次我都会在表格视图中添加新数组。之后我将重新加载 tableview 单元格。现在它显示来自第一个单元格的记录。任何人请告诉我如何显示最后一个单元格。

// Customize the appearance of table view cells.
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {


static NSString *CellIdentifier = @"TrackDataTimeCell";
TrackDataTimeCell *cell = (TrackDataTimeCell *)[tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil)
{
    @autoreleasepool {
        [[NSBundle mainBundle] loadNibNamed:@"TrackDataTimeCell" owner:self options:nil];
        cell = (TrackDataTimeCell *) cellChallengeFriends;
        cellChallengeFriends = nil;
        cell.selectionStyle = UITableViewCellSelectionStyleNone;
    }
}

if (!cell) {
    cell =(TrackDataTimeCell *)[tableView dequeueReusableCellWithIdentifier:CellIdentifier];


    UIActivityIndicatorView *activityIndicatorView = [[UIActivityIndicatorView alloc] initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleGray];
    cell.accessoryView = activityIndicatorView;

}
NSArray *tableData = [NSArray arrayWithObjects:@"Egg Benedict", @"Mushroom Risotto", nil];
NSArray *tableData1 = [NSArray arrayWithObjects:@"test1", @"test2", nil];


[cell.deleteButton  addTarget:self action:@selector(deleteButtonAction:) forControlEvents:UIControlEventTouchUpInside];
cell.deleteButton.tag = indexPath.row;


cell.nameList.text= [tableData objectAtIndex:indexPath.row];
cell.marklist.text= [tableData1 objectAtIndex:indexPath.row];


return cell;

}


- (IBAction)addBillingItems:(id)sender
 {

    rowVal=rowVal+1;
    [nameList addObject: self.codeAdd.text];
    [marklist addObject: selectDate];

    [tbl reloadData];

}

请查看http://postimg.org/image/g0dzs0r2p/上的示例图片

我有5个细胞。现在它显示前四个。滚动后它显示 5 但我希望最后一个单元格第一次显示。请帮我

4

3 回答 3

0

您必须少设置 tableview 框架。如果您有 iPhone tableview 框架,则将框架设置为 cgrectmake(0,0,320,430)。如果这不能解决您的问题,请添加 uitableview:viewforheaderinsection 方法。只需添加 uiview 并将框架设置为 cgrectmake( 0,0,320,1)。这将为表格设置框架并显示所有单元格。

于 2013-08-06T06:44:46.090 回答
0

您的问题有一个简单的解决方案。只需使用 tableView 的方法

    [tbl scrollToRowAtIndexPath:[NSIndexPath indexPathForRow: rowVal inSection:0]
                      atScrollPosition:UITableViewScrollPositionBottom
                              animated:YES];

之后调用它[tbl reloadData]

于 2013-08-06T07:09:22.823 回答
0

您可以使用它自动滚动到最后插入的单元格。

    CGPoint bottomOffset = CGPointMake(0, self.tableView.contentSize.height - self.tableView.bounds.size.height + 150);
    if ( bottomOffset.y > 0 ) {
        [self.tableView setContentOffset:bottomOffset animated:YES];
    }

150的值是在 tableView 中的单元格后面添加额外的空间。它是可选的,即如果您想要单元格后的额外空间,您可以使用它

于 2013-08-06T06:46:06.867 回答