私は7つのセクションを持つ通常のTableViewを持っています。それ以外の場合は、prepareForSegue メソッドがあります。すべてが正常に動作します。しかし、viewDidLoadで編集モードを設定しているとき
[self.tableView setEditing:YES animated:YES];
私の prepareForSegue メソッドが機能しなくなりました。
編集のために、これらのメソッドを実装しました
- (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath;
- (BOOL)tableView:(UITableView *)tableView canMoveRowAtIndexPath:(NSIndexPath *)indexPath;
- (UITableViewCellEditingStyle)tableView:(UITableView *)tableView editingStyleForRowAtIndexPath:(NSIndexPath *)indexPath;
あなたが私を助けてくれることを願っています。ありがとう。