Instance Method
インスタンスメソッド
initWithString:
Initializes an NSURL object with a provided URL string.
NSURLオブジェクトをある提供されたURL文字列で初期化します。
Declaration
宣言
- (instancetype)initWithString:(NSString
*)URLString;
Parameters
パラメータ
URLString
The URL string with which to initialize the NSURL object. This URL string must conform to URL format as described in RFC 2396, and must not be nil
. This method parses URLString
according to RFCs 1738 and 1808.
URL文字列、それでNSURLオブジェクトを初期化することになります。このURL文字列は、RFC 2396で記述されるとおりにURL形式に準拠しなければなりません、そしてnil
であってはいけません。このメソッドは、URLString
をRFCs 1738と1808に従って構文解析します。
Return Value
戻り値
An NSURL object initialized with URLString
. If the URL string was malformed, returns nil
.
あるNSURLオブジェクト、URLString
で初期化されます。URL文字列が不正な形式だったならば、nil
を返します。
Discussion
議論
This method expects URLString
to contain only characters that are allowed in a properly formed URL. All other characters must be properly percent escaped. Any percent-escaped characters are interpreted using UTF-8 encoding.
このメソッドは、適切に形成されたURLに入れるのを許可される文字のみを含むことをURLString
に期待します。全ての他の文字は、適切にパーセントエスケープされなければなりません。あらゆるパーセントエスケープされた文字は、UTF-8符号化を使って解釈されます。
See Also
参照
Creating an NSURL Object
NSURLオブジェクトを作成する
+ URLWithString:
Creates and returns an NSURL object initialized with a provided URL string.
提供されたURL文字列で初期化されるNSURLを作成して返します。
+ URLWithString:relativeToURL:
Creates and returns an NSURL object initialized with a base URL and a relative string.
基準URLと相対文字列でNSURLオブジェクトを作成して返します。
+ fileURLWithPath:isDirectory:
Initializes and returns a newly created NSURL object as a file URL with a specified path.
新しく作成されたNSURLオブジェクトをファイルURLとして初期化して返します、ある指定されたパスを持ちます。
- initFileURLWithPath:isDirectory:
Initializes a newly created NSURL referencing the local file or directory at path
.
新しく作成されたNSURLを初期化します、path
でのローカルのファイルまたはディレクトリを参照しています。
+ fileURLWithPath:
Initializes and returns a newly created NSURL object as a file URL with a specified path.
新しく作成されたNSURLオブジェクトをファイルURLとして初期化して返します、ある指定されたパスを持ちます。
- initFileURLWithPath:
Initializes a newly created NSURL referencing the local file or directory at path
.
新しく作成されたNSURLを初期化します、path
でのローカルのファイルまたはディレクトリを参照しています。
+ fileURLWithPathComponents:
Initializes and returns a newly created NSURL object as a file URL with specified path components.
新しく作成されたNSURLオブジェクトをファイルURLとして初期化して返します、指定されたパス構成要素いくらかを持ちます。