我有一个用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]
非常感谢您对此提出的任何建议。