我正在尝试在运行时动态地向我的分组表中添加/删除单元格。这是我有史以来第一个应用程序,虽然我尝试了很多其他人的建议,但我仍然无法使用它。这是我正在使用的代码:
(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath];
UILabel *lblName = (UILabel *)[cell viewWithTag:100];
[lblName setText:[intervalArray objectAtIndex:[indexPath row]]];
return cell;
答案 0 :(得分:0)
您需要更新array
(需要NSMutableArray
)作为UITableView
的数据源。那你可以
[self.myTableView reloadData];
重新加载tableview
这是处理更新TableView行的一个很好的指南: http://developer.apple.com/library/ios/#documentation/userexperience/conceptual/tableview_iphone/ManageInsertDeleteRow/ManageInsertDeleteRow.html