-
Notifications
You must be signed in to change notification settings - Fork 603
Description
Hi. If I understand it correctly the cocoapods podspecs for Core Plot now points to the HEAD. In the latest version there are a couple of lines that should be commented out for Core Plot to compile properly. The lines are in CPTAnimation:
IMP setterMethod = [boundObject methodForSelector:boundSetter];
setterMethod(boundObject, boundSetter, tweenedValue);
IMP setterMethod = [boundObject methodForSelector:boundSetter];
setterMethod(boundObject, boundSetter, buffer);
And in CPTAnimationPlotRangePeriod:
IMP getterMethod = [boundObject methodForSelector:boundGetter];
CPTPlotRange *current = getterMethod(boundObject, boundGetter);
I assume these are upcoming implementations. I can of course edit these out myself, but its a problem when running CI unit test with automatic pod update.
Thanks for a great product. Cheers, Trond