1

我正在尝试从我的 tableView 重新加载数据。当从它自己的 void 调用它时,它不起作用并且什么也没有发生。但是,当我环顾四周时,当我删除一个单元格时它会起作用。我认为这与我的初始化有关。你能帮我解决吗?谢谢。

下面是我的代码!

- (id) init {

//NSLog(@"%@", theUserID);
// Set up database connection
NSString *myDBTwo = [[[NSBundle mainBundle] resourcePath] stringByAppendingPathComponent:@"flashpics.db"];
databaseTwo = [[Sqlite alloc] init];
[databaseTwo open:myDBTwo];

//Initialize the array.
listOfItems = [[NSMutableArray alloc] init];

[listOfItems addObject:@"hi!"];

// Add to array to display in the tableView
NSArray *listOfItemsTwo = [databaseTwo executeQuery:@"SELECT * FROM albums"];   
for (NSDictionary *rowone in listOfItemsTwo) {
    NSString *getName = [rowone valueForKey:@"name"];
    if (getName != NULL) {
        [listOfItems addObject:getName];
        [getName release];
    }
}

//[database release];

return self;
}

这是我的空白:

- (void)refreshTableView {
[(UITableView *)self.view reloadData];
//[self.tableView reloadData];
}

提前致谢。

4

1 回答 1

2

你过度释放getName,所以我希望这会崩溃。但是,如果在-refreshTableView被调用时没有发生任何事情,那么我希望那self.viewnil. 您应该验证以下内容:

  • refreshTableView实际上被称为
  • self.view不在nil使用它的地步
  • tableView:cellForRowAtIndexPath:被调用,并在请求时返回正确配置的单元格
于 2011-03-08T02:46:09.640 回答