使用 Objective-C 压缩东西

发布于 2024-08-09 06:20:02 字数 121 浏览 2 评论 0原文

我正在使用 GNUstep 学习 Objective-C(因为我使用 Linux)。我正在考虑创建一个简单的拉链应用程序只是为了练习,但是我如何在哪里找到构建它的教程? Objective-C 中用于此操作的通用库是哪个?谢谢。

I'm learning Objective-C using GNUstep(because I use Linux). I was thinking in create a simple zipper application only to practice, but how where i can find a tutorial to build it? and which is the common library used to this things in Objective-C? Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

Spring初心 2024-08-16 06:20:02
  1. 您可以参考“如何我使用 Objective-C 创建 zip 文件?”,或者
  2. Objective-C 是 C 的超集,因此您可以自由链接到任何您方便的 C zip 库(例如 zlib),或者
  3. 您可以调用 Linux 系统上可用的 zip 和 unzip shell 实用程序,并使用管道或临时位置与它们交互对于文件。
  1. You could reference the accepted answer to "How can I create a zip file by using Objective-C?", or
  2. Objective-C is a superset of C, so you can freely link to whatever C zip library is convenient for you (such as zlib), or
  3. You can call out to the zip and unzip shell utilities available on your Linux system and interact with them using pipes or temporary locations for the files.
流年已逝 2024-08-16 06:20:02

如果您想创建一个模仿 gzip 的应用程序,那么最好使用的库可能是 zlib

尽管这纯粹是一个c 实施。另请参阅此处:objective-c 文件压缩< /a>

If your want to create an application that mimics gzip probably the best library to use is zlib

although this is a purely c implementation. Also see here: objective-c file compression

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文