Possible Duplicate:
How can I disable ARC for a single file in a project?
I want to use some code (a folder full of files, basically) but it is written pre ARC.
I want to use this from a project written in ARC so I can't just drop the code into my project (I think).
I'm wondering if there's a way to solve this by creating a framework or static library from the non-ARC files that I can reference in my ARC project.
Can this work? Any ideas as to the best route to follow?