uInt avail_in; /* number of bytes available at next_in */
@property (readonly) NSUInteger length;
赋值类型不匹配导致编译器报错
强制转换即可
.avail_in = (uInt)[pUncompressedData length];
uInt avail_in; /* number of bytes available at next_in */
@property (readonly) NSUInteger length;
赋值类型不匹配导致编译器报错
强制转换即可
.avail_in = (uInt)[pUncompressedData length];