What is a good zip library for iOS that is ARC compatible? [closed] - objective-c

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
I'm looking to unzip a file in an iOS app, but can't find a library that is ARC compatible.

Minizip works pretty well. I'm not sure what you mean by "ARC compatible," though. If it's in C or C++, ARC isn't relevant. If it's in ObjC, you can just turn off ARC for the files you need to ( How can I disable ARC for a single file in a project? )

Related

Using non-ARC static library in ARC project? [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
OK, this is pretty much what I'm trying to do.
I've got a HUGE static library full of functions, which has to be NON-ARC (because of errors).
Now my app has to be ARC-enabled.
However : when ever I'm trying to compile my app, it throws all errors related to my using the NON-arc library.
Any ideas on how this can be solved?
Combining ARC with MRC is not at all a problem. In fact, you do it every day, as many system frameworks are not implemented using ARC, yet.
So, what are your errors?

Browser-based C and Objective-C tutorials [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 9 years ago.
I've seen some great in-browser tutorials and/or practice exercises in other languages. To name a few:
Ruby: Tryruby.org
JS: Codeacademy.com
Rails: railsforzombies.com
I've also seen great Java algorithm challenges at codingbat.com.
I haven't found anything similar for learning C, or Objective-C (which is my real goal). Any suggestions?
go ahead with http://developer.apple.com/library/mac/documentation/cocoa/conceptual/objectivec/objc.pdf
for Objective-C. It works great on my browser- opens up the pdf.

Objective-c and garbage collection [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 11 years ago.
If I code an objective-c program can I rely on the system to garbage collect efficiently?
To Bavarious's point, it depends on what your expectation of efficiency is. Putting that aside, note that garbage collection is only available on OS X, not iOS.

Best Assembly IDE for Windows [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 11 years ago.
What is the best IDE for Assembly programming in Windows? (It should work for either MASM, TASM, or NASM, although any asm will do=P).
Commercial or FOSS is fine.
i found this http://www.programmersheaven.com/download/23476/download.aspx
there is winasm as well , here http://www.winasm.org/
but i'll keep this post updated
RadAsm is a very good IDE. It comes with it's own resource editor for windows. It supports various assemblers and compilers.

Are there any PDF libraries for J2ME? [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
We need to create a basic PDF reader running on J2ME. While there are several PDF libraries for Java, I'm not sure whether they support J2ME.
Does anyone know a working J2ME PDF library? If not, why it's so hard to make it?
You may use JPedal for Java ME. You can find details here.