Initializer

init(contentsOfFile:)

Returns a character set read from the bitmap representation stored in the file a given path. 与えられたパスでのファイルに格納されるビットマップ表現から読み出される文字集合を返します。

Declaration 宣言

init?(contentsOfFile fName: String)

Parameters パラメータ

path

A path to a file containing a bitmap representation of a character set. The path name must end with the extension .bitmap. ある文字集合のビットマップ表現を含んでいるファイルへのパス。パス名は、拡張子.bitmapで終わらなければなりません。

Return Value 戻り値

A character set read from the bitmap representation stored in the file at path. pathでのファイルに格納されるビットマップ表現から読み出される文字集合。

Discussion 議論

This method doesn’t use filenames to check for the uniqueness of the character sets it creates. To prevent duplication of character sets in memory, cache them and make them available through an API that checks whether the requested set has already been loaded. このメソッドは、それが作成する文字集合の独特さについて検査するのにファイル名を使いません。文字集合それらの重複をメモリにおいて防ぐために、それらをキャッシュして、要請された集合がすでにロードされているかどうか検査するAPIを通して、それらを利用可能にしてください。

To read a bitmap representation from any file, use the NSData methoddataWithContentsOfFile:options:error: and pass the result to init(bitmapRepresentation:). ビットマップ表現を何らかのファイルから読み出すには、NSData methoddataWithContentsOfFile:options:error:を使って、結果をinit(bitmapRepresentation:)に渡してください。

See Also 参照

Creating and Managing Character Sets as Bitmap Representations 文字集合をビットマップ表現として作成および管理する