Initializer
init(forItem:inSection:)
Initializes an index path with the indexes of a specific item and section in a collection view.
あるインデックスパスを、あるコレクションビューの中の特定の項目および区画のインデックスそれらで初期化します。
Declaration
宣言
iOS, iPadOS, Mac Catalyst, tvOS
convenience init(item: Int
,
section: Int
)
macOS
init(forItem item: Int
,
inSection section: Int
)
Parameters
パラメータ
item
An index number identifying an item in a UICollectionView
object in a section identified by the section
parameter.
UICollectionView
オブジェクトの中のある項目を、section
パラメータによって識別される区画において、識別するインデックス番号。
section
An index number identifying a section in a UICollectionView
object.
UICollectionView
オブジェクトにおいてある区画を識別するインデックス番号。
Return Value
戻り値
An NSIndexPath
object.
NSIndexPath
オブジェクト。
See Also
参照
Using Special Node Names
特殊ノード名を使う
init(row: Int, section: Int)
Initializes an index path with the indexes of a specific row and section in a table view.
インデックスパスをテーブルビューの中の特定の行と区画のインデックスで初期化します。
var section: Int
An index number identifying a section in a table view or collection view.
テーブルビューまたはコレクションビューの中のある区画を識別するインデックス番号。
var row: Int
An index number identifying a row in a section of a table view.
テーブルビューのある区画の中のある行を識別するインデックス番号。
var item: Int
An index number identifying an item in a section of a collection view.
コレクションビューのある区画の中のある項目を識別するインデックス番号。