我有两个带有自定义单元格的 UITableView,并且面临着奇怪的行为。
这些表会定期更新为新记录。我将 20 条记录添加到表#1,表#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