Reputation: 91
I am trying to plot a graph for number of visits of a website on a weekly basis.I need to show this information plotted on a graph in an iphone app.As ARC is used in my iphone project, it is hard for me to implement CorePlot as it does not use ARC.
Upvotes: 0
Views: 150
Reputation: 17655
You can turn ARC off
for CorePlot by setting this -fno-objc-arc
flag to it's source files by selecting your project file in XCode, selecting your target, going to 'Build Phases'->'Compile Sources'
if you dont like above solution then you can use EcGraph
Upvotes: 3