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