有没有适用于 iOS 的 unrar 库?
我想在我的 iPhone 应用程序中包含 unrar 文件选项。
我已经尝试过 https://github.com/ararog/Unrar4iOS 但这个库不完整(有些功能尚未实现,如 -(BOOL) unrarFileTo:(NSString*)path overWrite:(BOOL)overwrite)
谢谢。
I want to include an unrar files option in my iphone app.
I have already tried https://github.com/ararog/Unrar4iOS but this library is not complete (some functions are not yet implemented like -(BOOL) unrarFileTo:(NSString*)path overWrite:(BOOL)overwrite)
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我最终使用了 Unrar4ios,但我需要自己编写实际提取 rar 文件的函数:
I ended up using Unrar4ios but I needed to write myself the function that actually extracts the rar file:
这可能会有所帮助:https://github.com/ararog/Unrar4iOS
This might help: https://github.com/ararog/Unrar4iOS
unrarlib 库应该适合你,因为 Objective C 是一个超集的 C.
The unrarlib library should work for you, since Objective C is a superset of C.