init(bitmapRepresentation : Data)
var bitmapRepresentation : Data
NSData
object encoding the receiver in binary format.
レシーバをバイナリ形式にエンコードしている、NSData
オブジェクト。
Availability 有効性
Technology
init?(contentsOfFile fName: String
)
path
A path to a file containing a bitmap representation of a character set. The path name must end with the extension .bitmap
.
ある文字集合のビットマップ表現を含んでいるファイルへのパス。パス名は、拡張子.bitmap
で終わらなければなりません。
A character set read from the bitmap representation stored in the file at path
.
path
でのファイルに格納されるビットマップ表現から読み出される文字集合。
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
methoddata
and pass the result to init(bitmap
.
ビットマップ表現を何らかのファイルから読み出すには、NSData
methoddata
を使って、結果をinit(bitmap
に渡してください。
init(bitmapRepresentation : Data)
var bitmapRepresentation : Data
NSData
object encoding the receiver in binary format.
レシーバをバイナリ形式にエンコードしている、NSData
オブジェクト。