0

我正在尝试在运行时动态地将单元格添加/删除到我的分组表中。这是我制作的第一个应用程序,虽然我尝试了许多其他人的建议,但我仍然无法让它发挥作用。这是我正在使用的代码:

(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;
4

1 回答 1

0

array您将需要更新NSMutableArray用作UITableView. 那么你也能

[self.myTableView reloadData];

重新加载tableview

这是处理更新 TableView 行的一个很好的指南:http: //developer.apple.com/library/ios/#documentation/userexperience/conceptual/tableview_iphone/ManageInsertDeleteRow/ManageInsertDeleteRow.html

于 2013-04-15T19:11:57.130 回答