I want to run xcode project from here. I get error message:
No visible @interface for declares the selector ‘set Range With Minimum:and Maximum:’ in SPUGalleryManagedChartViewController.m file.
How to fix it?
if (self.ranges) {
for (int i=0; i<self.chart.allAxes.count && i<self.ranges.count; i++) {
if (self.ranges[i]) {
SChartRange *range = (SChartRange *)self.ranges[i];
[self.chart.allAxes[i] setRangeWithMinimum:range.minimum andMaximum:range.maximum];
}
}
}