次の方法で共有


UITableView.InsertSections(NSIndexSet, UITableViewRowAnimation) メソッド

定義

操作をアニメーション化するオプションを使用して、テーブル ビューからセクション (またはセクション) を挿入します。

[Foundation.Export("insertSections:withRowAnimation:")]
public virtual void InsertSections (Foundation.NSIndexSet sections, UIKit.UITableViewRowAnimation withRowAnimation);
abstract member InsertSections : Foundation.NSIndexSet * UIKit.UITableViewRowAnimation -> unit
override this.InsertSections : Foundation.NSIndexSet * UIKit.UITableViewRowAnimation -> unit

パラメーター

sections
NSIndexSet

挿入するセクション識別子のセット。 特定のインデックスにセクションが既に存在する場合は、1 つ下のインデックス位置に移動します。

withRowAnimation
UITableViewRowAnimation

行を挿入するときに使用するアニメーションの種類 (例: フェードインまたは左からスライドイン)

属性

注釈

UITableView は、その直後に関連 UITableViewSource するメソッドを呼び出して、表示されている行を表示するセルやその他のコンテンツを取得します。

EndUpdates()BeginUpdates()定義されたアニメーション ブロック内でこのメソッドが呼び出されると、削除が処理されるまで、行またはセクションの挿入はすべて遅延されます。 これは、アニメーション ブロック内での挿入および削除メソッドの呼び出しの順序に関係なく発生します。

適用対象