1
NSTableView
の行をアニメーション化するために削除して挿入する行のNSMutableIndexSet
を提供するAPI呼び出しを探しています。理想的には、古い配列と新しい配列を渡して結果の取り出しと挿入のインデックスを取得し、NSTableView
またはそれに関連するプロトコルにそのようなものは表示されません。NSTableViewの行アニメーションの挿入と削除の方法
私はそうのように、beginUpdates
とendUpdates
の間でアニメーションを実装したいと思います:初期化は2を取る
@property (strong, nonatomic) NSIndexSet *rowsToRemove;
@property (strong, nonatomic) NSIndexSet *rowsToInsert;
:
[_tableView removeRowsAtIndexes:rowsToRemove withAnimation:NSTableViewAnimationSlideUp];
[_tableView insertRowsAtIndexes:rowsToInsert withAnimation:NSTableViewAnimationSlideDown];