実行時にグループ化されたテーブルにセルを動的に追加/削除しようとしています。これは私がこれまでに作成した最初のアプリであり、他の多くの人の提案を試しましたが、まだ機能していません。私が使用しているコードは次のとおりです。
(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;