[Solved] Using ARC library in non-ARC project [closed]
The issue is that you are mixing an ARC violating construct into ARC’d files through inclusion. You can’t apply -fno-objc-arc to a single header file because that doesn’t make sense. Since it is in a header file, you will either need to use an #if pragma to switch between behaviors depending on whether an ARC … Read more