- compressedDataUsingAlgorithm:error:
NSDataCompressionAlgorithm
Availability 有効性
Technology
- (instancetype)decompressedDataUsingAlgorithm:(NSDataCompressionAlgorithm
)algorithm
error:(NSError
* _Nullable *)error;
algorithm
An algorithm used to decompress the data. For a list of available algorithms, see NSData
.
データを解凍するために使われるアルゴリズム。利用可能なアルゴリズムの一覧として、NSData
を見てください。
error
An NSData
instance that contains the decompressed buffer data.
あるNSData
インスタンス、それは解凍されたバッファデータを含みます。
Use this method to inflate in-memory data when you need uncompressed bytes. Specify the same algorithm used to compress the data to successfully decompress it. このメソッドを使用して、インメモリデータをふくらましてください、あなたが解凍したバイトそれらを必要とする場合に。データを圧縮するのに使用したのと同じアルゴリズムを指定してください、うまくそれを解凍するために。
The following example shows how to create a new NSData
instance from data compressed with the NSData
algorithm:
以下の例は、どのように新しいNSData
インスタンスを、NSData
アルゴリズムで圧縮したデータから作成するかを示します。
- compressedDataUsingAlgorithm:error:
NSDataCompressionAlgorithm