Is CHDataStructures ARC-compliant?

367 Views Asked by At

The documentation probably says, but I'm a newbie and can't yet make sense of it all. I'm having all sorts of ARC errors trying to use it, but I'm hoping it's just my own mistake(s).

2

There are 2 best solutions below

6
On BEST ANSWER

As borrrden points out, it is easy o see it is not ARC-complient.

But: It doesnt have to be ARC-complient, you can activate/deactivate ARC for single files by adding the
-fno-objc-arc compiler flag for those files.

add compiler flags in Targets -> Build Phases -> Compile Sources

enter image description here

0
On

Look at 1) The last time it was updated (largely 2 years ago) and 2) The retain and release statements peppered everywhere. No, this project is not ARC compliant...