使用 GTMNSData+zlib 解压 NSData
我从 Google Docs 下载压缩的 NSData。第一个字节是 PK。 我已经阅读过解压缩它们,我可以使用 GTMNSData+zlib 类别。 编译我的项目时,出现一些错误,例如:
"_inflate", referenced from:
+[NSData(GTMZLibAdditions) gtm_dataByInflatingBytes:length:] in GTMNSData+zlib.o
ld: symbol(s) not found
I download from Google Docs zipped NSData. The first bytes are PK.
I've read to unzip them I could use GTMNSData+zlib category.
Compiling my project, I obtain some errors, for example:
"_inflate", referenced from:
+[NSData(GTMZLibAdditions) gtm_dataByInflatingBytes:length:] in GTMNSData+zlib.o
ld: symbol(s) not found
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要将 zlib 包含在项目的框架中。在 XCode 4 中,在项目导航器顶部选择您的项目,转到构建阶段,链接二进制文件与库,单击 + 号添加并搜索 libz.dylib,如果您需要特定版本,只需选择正确的版本。
You need to include zlib in your frameworks for your project. In XCode 4 select your project in the top of the Project Navigator, Go to Build Phases, Link Binary With Libraries, click the + sign to add and search for libz.dylib, if you need a specific version just select the right version.