Initializer
init(contentsOf:encoding:)
Returns an NSString
object initialized by reading data from a given URL interpreted using a given encoding.
NSString
オブジェクトを返します、データをある与えられたURLから読み出すことによって初期化します、与えられた符号化を使って解釈します。
Declaration
宣言
convenience init(contentsOf url: URL
,
encoding enc: UInt
) throws
Parameters
パラメータ
url
The URL to read.
このURLを読み出します。
enc
The encoding of the file at path
. For possible values, see NSStringEncoding
.
path
でのファイルのその符号化。可能な値として、NSStringEncoding
を見てください。
error
If an error occurs, upon returns contains an NSError
object that describes the problem. If you are not interested in possible errors, pass in NULL
.
エラーが発生するならば、戻りでは問題を記述するNSError
オブジェクトを含みます。あなたが起こりうるエラーに興味がないならば、NULL
を渡してください。
Return Value
戻り値
An NSString
object initialized by reading data from url
. The returned object may be different from the original receiver. If the URL can’t be opened or there is an encoding error, returns nil
.
あるNSString
オブジェクトで、url
からデータを読み出すことによって初期化されます。返されるオブジェクトは、元のレシーバと異なるかもしれません。URLが開かれることができないまたは符号化エラーがあるならば、nil
を返します。
See Also
参照
Creating and Initializing a String from an URL
文字列をURLから作成して初期化する
Related Documentation
関連文書