I’m looking for an ARC compatible charting framework for iOS. I’m aware of the existence of Core Plot, but apparently this framework is MRC and does not work in an ARC environment. Googling didn’t turn up anything decent.
Specifically I’m looking to draw a histogram (bar chart) with two axes and and some basic display of the values on an iPhone, so nothing too complicated actually.
Does anyone know of an ARC alternative to Core Plot that can achieve this?
You can still use Core Plot in your project even though it’s manual reference counting.
In your Target -> Buld Phases -> Compile Sources you can add a compiler flag to disable ARC on Core Plot related files.
Core Plot should now work in your ARC enabled project.