Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
標準の UITableView を作成しました。セルを選択すると、2 つの tableviewCell の間に詳細のサブテーブルが残る必要があります。どのようにできるのか?何か提案はありますか?
このように選択したセルの上/下に新しい行を挿入するには、insertRowsAtIndexPaths を使用します。
[tableView insertRowsAtIndexPaths:[NSArray arrayWithObject:indexPath] withRowAnimation:UITableViewRowAnimationBottom];
要件に応じてメソッドをカスタマイズします。