Instance Property インスタンスプロパティ

pathComponents

An array containing the path components. (read-only) (読み出しのみ)

Declaration 宣言

@property(nullable, readonly, copy) NSArray<NSString *> *pathComponents;

Discussion 議論

This property contains an array containing the individual path components of the URL, each unescaped using the stringByReplacingPercentEscapesUsingEncoding: method. For example, in the URL file:///directory/directory%202/file, the path components array would be @[@"/", @"directory", @"directory 2", @"file"]. このプロパティは、URLの個々のパス構成要素を含んでいる配列を含みます、それぞれstringByReplacingPercentEscapesUsingEncoding:メソッドを使ってアンエスケープされます。例えば、URL file:///directory/directory%202/fileにおいて、パス構成要素の配列は@[@"/", @"directory", @"directory 2", @"file"]です。

See Also 参照

Accessing the Parts of the URL URLの部分それらにアクセスする