- compressUsingAlgorithm:error:
NSDataCompressionAlgorithm
Availability 有効性
Technology
- (BOOL)decompressUsingAlgorithm:(NSDataCompressionAlgorithm
)algorithm
error:(NSError
* _Nullable *)error;
algorithm
The algorithm to use for decompressing the data. For a list of available algorithms, see NSData
.
データを解凍するために使用するアルゴリズム。利用可能なアルゴリズムの一覧として、NSData
を見てください。
error
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 inflate an instance of NSMutable
compressed with the NSData
algorithm:
以下の例は、NSData
アルゴリズムで圧縮されたNSMutable
のインスタンスを膨らませる方法を示します。
- compressUsingAlgorithm:error:
NSDataCompressionAlgorithm