ある位置に新しい行を挿入したいテーブルビューがあります。私はこのようにしましたが、予期しない出力が得られます。私はここで何か間違ったことをしていますか?
NSIndexPath *indexpath = [NSIndexPath indexPathForRow:position inSection:0];
NSArray *temp_array = [[NSArray alloc] initWithObjects:indexpath, nil];
[self.table insertRowsAtIndexPaths:temp_array withRowAnimation:UITableViewRowAnimationBottom];
これ以上何かする必要がありますか。これは別の関数 (insert_at_position:) で行っています。