几个带有自定义单元格的UITableView。不工作滚动

时间:2013-04-08 17:37:12

标签: objective-c uitableview custom-cell

我有两个带自定义单元格的UITableView,面对奇怪的行为。

使用新记录定期更新表格。我向表#1添加了20条记录,表#2仍为空。所有记录都不适合屏幕,因此表格显示滚动。然后我在表#2中添加一条记录,表#1停止滚动(你只能看到适合屏幕的前几条记录)。

重新加载表#1的数据后,问题就消失了。

如果没有自定义单元格,滚动就没有问题。

#import "MyViewController.h"
#import "MyCell1.h"

@implementation MyViewController
@synthesize table1, table2;

- (void)viewDidLoad
{
    [super viewDidLoad];

    viewList = [NSMutableArray array];
    viewMemory = [NSMutableArray array];

    [table1 setDataSource:self];
    [table2 setDataSource:self];
}

- (void)didReceiveMemoryWarning
{
    [super didReceiveMemoryWarning];
}

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
    return 1;
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    NSInteger num = 0;

    if ([tableView tag] == 1980) {
        num = [viewList count];
    }
    else if ([tableView tag] == 1981) {
        num = [viewMemory count];
    }

    return num;
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    MyCell1 *cell = [tableView dequeueReusableCellWithIdentifier:@"Cell"];
    NSString *someText;

    if (!cell) {
        cell = (MyCell1*)[[[NSBundle mainBundle] loadNibNamed:@"Cell1"owner:self options:nil] objectAtIndex:0];
    }

    if ([tableView tag] == 1980) {
        someText = [viewList objectAtIndex:indexPath.row];
    }
    else if ([tableView tag] == 1981) {
        someText = [viewMemory objectAtIndex:indexPath.row];
    }

    [[cell value] setText:someText];

    return cell;
}

- (IBAction)ButtonClick:(UIButton *)sender {
    if ([sender tag] == 1980) {
        [viewList addObject:@"0000"];
        [[self table1] reloadData];
    }
    else if ([sender tag] == 1981) {
        [viewMemory addObject:@"1111"];
        [[self table2] reloadData];
    }
}

@end

1 个答案:

答案 0 :(得分:0)

在另一个站点,我被允许使用beginUpdates - endUpdates而不是reloadData来获取tableviews中的更新记录。一切正常。