2

我有一个 UITableView,数据是从外部存储的数据库中提取的。显然,获取该数据需要一些时间,当应用程序启动时,该表用于其数据的数组中没有数据。

当数据从我调用的外部源加载时,[self.tableview reloadData];但有一个小问题。第一个单元格中没有任何文本,直到它被重绘之后,无论是通过选择它还是通过滚动它离开屏幕。我试过添加一个调用[self.tableView setNeedsLayout];[self.tableView setNeedsDisplay]但这没有明显的效果。

该数组在重新加载表时包含正确的数据,因此它不是竞争条件(我相信!)。

关于可能导致这种情况的任何其他想法?

@implementation EXPMasterViewController

@synthesize detailViewController = _detailViewController;
@synthesize partiesModel = _partiesModel;

- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
{
    self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
    if (self) {
       self.title = NSLocalizedString(@"Master", @"Master");
       self.clearsSelectionOnViewWillAppear = NO;
       self.contentSizeForViewInPopover = CGSizeMake(320.0, 600.0);

       self.partiesModel = [[Parties alloc] init];
       [[NSNotificationCenter defaultCenter] addObserver:self 
                                             selector:@selector(reloadData)
                                                 name:@"ReloadData" 
                                               object:nil];
    }
    return self;
}

-(void)reloadData{
    [self.tableView reloadData];
    [self.tableView setNeedsLayout];
    [self.tableView setNeedsDisplay];
}

- (void)viewDidLoad
{
    [super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.
    [self.tableView selectRowAtIndexPath:[NSIndexPath indexPathForRow:0 inSection:0 animated:NO scrollPosition:UITableViewScrollPositionMiddle];
}

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

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    if(self.partiesModel.partiesArray) return [self.partiesModel.partiesArray count];
    else return 1;
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    static NSString *CellIdentifier = @"Cell";

    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
    if (cell == nil) {
        cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];
    }

    // Configure the cell.
    cell.textLabel.text = [[self.partiesModel.partiesArray objectAtIndex:indexPath.row] name];
    return cell;
}

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
    if (!self.detailViewController) {
        self.detailViewController = [[[EXPDetailViewController alloc] initWithNibName:@"EXPDetailViewController" bundle:nil] autorelease];
    }
    self.detailViewController.detailItem = [self.partiesModel.partiesArray objectAtIndex: indexPath.row];
}
4

2 回答 2

1

如果您已经在 IB 中建立了连接,请取出以下行

messageTableView =[[UITableView alloc] init];
于 2012-06-03T02:26:19.257 回答
0

啊修复它,这与最初选择一行有关。删除[self.tableView selectRowAtIndexPath:[NSIndexPath indexPathForRow:0 inSection:0 animated:NO scrollPosition:UITableViewScrollPositionMiddle];清除了一切

于 2012-01-16T02:20:15.927 回答