Class

NSURLComponents

An object that parses URLs into and constructs URLs from their constituent parts that bridges to URLComponents; use NSURLComponents when you need reference semantics or other Foundation-specific behavior. あるオブジェクト、それはURLをそれへと構文解析してそしてURLをそれらの構成部分から構築するものです、それはURLComponentsにブリッジします;NSURLComponentsをあなたが参照意味論または他のFoundation特有の挙動を必要とする場合は使ってください。

Declaration 宣言

class NSURLComponents : NSObject

Overview 概要

The NSURLComponents class is a class that is designed to parse URLs based on RFC 3986 and to construct URLs from their constituent parts. Its behavior differs subtly from the NSURL class, which conforms to older RFCs. However, you can easily obtain an NSURL object based on the contents of a URL components object or vice versa. NSURLComponentsクラスは、URLをRFC 3986に基づいて構成要素に分析するためにそしてURLをそれらの構成要素から組み立てるために設計されるクラスです。それの挙動は、NSURLクラスとは微妙に異なります、それはより古いRFCに準拠します。しかしながら、あなたは簡単にNSURLオブジェクトを入手することがURL構成要素オブジェクトに基づき可能です、また逆も同じ。

You create a URL components object in one of three ways: from an NSString object that contains a URL, from an NSURL object, or from scratch by using the default initializer. From there, you can modify the URL’s individual components and subcomponents by modifying various properties, either in unencoded form or in URL-encoded form. If you set the unencoded property, you can then obtain the encoded equivalent by reading the encoded property value and vice versa. あなたは、URL構成要素オブジェクトを3つの方法の1つで作成します:URLを含むNSStringオブジェクトから、NSURLオブジェクトから、または省略時のイニシャライザを使うことによってゼロから。そこから、あなたはURLの持つ個々の構成要素および下位構成要素を修正することが、様々なプロパティの修正によって可能です、非符号化形式においてまたはURL符号化形式においてのどちらかで。あなたが非符号化プロパティを設定するならば、あなたはそのとき符号化された同等物を入手することが、符号化されたプロパティ値を読み出すことによって可能です、また逆も同じ。

Topics 話題

Creating URL Components URL構成要素を作成する

Getting the URL URLを取得する

Accessing Components in Native Format 構成要素にネイティブ形式でアクセスする

Accessing Components in URL-Encoded Format 構成要素にURL符号化形式でアクセスする

Locating Components in the URL String Representation 構成要素をURL文字列表現において位置決めする

Relationships 関係

Inherits From 継承元

Conforms To 次に準拠

See Also 参照

Using Reference Types 参照型を使用する