Xcode 8.0 ios10为核心绘图条形图构建警告

时间:2016-09-09 23:14:03

标签: core-plot ios10

我有一个用Objective-C编写的现有项目,来自ios8和Core-Plot 1.5.1静态库。我正在使用Xcode 8.0 beta 6(8S201h)编译ios8.2-> ios10。

编译项目时,我收到以下警告。 (该应用程序在运行时会创建我的条形图。)

  

警告:从不兼容的_Nullable分配   输入'myViewController * const_strong'

在条形图视图控制器中,我有以下内容:

中的.h:

@interface myViewController : UIViewController <CPTBarPlotDataSource, CPTBarPlotDelegate, UIActionSheetDelegate>
<。>中的

 CPTBarPlot *barPlot = [[CPTBarPlot alloc] init];

 barPlot.dataSource = self;

 barPlot.delegate = self; // [Warning: occurs on this line]

非常感谢您对此提出的任何建议。

1 个答案:

答案 0 :(得分:2)

分支release-2.2包含解决此类问题的修补程序。它尚未正式发布,但您可以尝试签出以查看已进行的更改。 Link