我正在尝试更新我的UITableview,但是当我调用[tableView reloadData];
时,表格不会更新,之后我会在更改时将表格视图滚动到单元格的名称上方。但它并没有添加新的行或类似的东西。
-(void)update {
[tableView reloadData];
NSLog(@" %i", [tableData count]);
}
当我添加一行时,它正在返回1的nslog,它返回2但是表没有更新。
- (void) refresh:(id)sender {
NSString *jsonString = [NSString
stringWithContentsOfURL:[NSURL URLWithString:xmlDataUrl]
encoding:NSUTF8StringEncoding
error:nil];
SBJSON *parser = [[SBJSON alloc] init];
NSDictionary *results = [parser objectWithString:jsonString error:nil];
parser = nil;
[self setTableData:[results objectForKey:@"items"]];
[self performSelector:@selector(update) withObject:nil afterDelay:.2];
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
// Change UITableViewCellStyle
cell = [[UITableViewCell alloc]
initWithStyle:UITableViewCellStyleSubtitle
reuseIdentifier:CellIdentifier];
}
NSDictionary *item = [tableData objectAtIndex:[indexPath row]];
[[cell textLabel] setText:[item objectForKey:@"title"]];
[[cell detailTextLabel] setText:[item objectForKey:@"descript"]];
[[cell detailTextLabel] setText:[item objectForKey:@"detail"]];
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
return 1;
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
return [tableData count];
}
答案 0 :(得分:5)
每次我看到这个问题都是UITableView
插座未连接的结果。因此,reloadData
电话会发送至nil
。这几乎肯定是在这种情况下出了什么问题。这可以通过简单的日志声明轻松测试。
-(void)update {
NSLog(@"tableView is '%@'",tableView);
[tableView reloadData];
NSLog(@" %i", [tableData count]);
}
您很可能会在控制台中看到tableView is (null)
。
旁注:
tableview填充的事实表明dataSource
和delegate
出口已连接。