使用iOS 7编译Core Plot 1.4时,我收到以下警告:
plotPoint:forPlotAreViewPoint: is deprecated和
plotAreViewPointForPlotPoint: is deprecated我如何替换这些方法来避免警告?
发布于 2013-10-17 06:27:56
plotPoint:forPlotAreaViewPoint方法将在2.0版本中删除。使用这个
-plotPoint:numberOfCoordinates:forPlotAreaViewPoint:类似地,对于方法plotAreaViewPointForPlotPoint,使用下面的一个
-plotAreaViewPointForPlotPoint:numberOfCoordinates您还可以参考核心图文档http://code.google.com/p/core-plot/downloads/list
https://stackoverflow.com/questions/19413223
复制相似问题