我有一个像这样的散点图类:
@interface myCPTScatterPlot : UIView <CPTPlotDataSource , CPTScatterPlotDelegate , CPTScatterPlotDataSource>
@property (nonatomic, assign) CPTGraphHostingView *hostView;
-(void) initAll;
-(void) configureHost;
-(void) configureGraph;
-(void) configurePlots;
-(void) configureAxes;
@end
我实现了所有配置功能。我创建了一个图表并将其添加到主机中:self.hostView.hostedGraph = graph;
我很好地实现了 myCPTScatterPlot.mm 文件。
我在 myCPTScatterPlot.mm 文件中有一个 initWithframe 函数,例如:
-(id)initWithFrame:(CGRect)frame {
if ((self = [super initWithFrame:frame])) {
hostView = [(CPTGraphHostingView *) [CPTGraphHostingView alloc] initWithFrame:frame];
}
return self;
}
最后,我有一个 pageView.mm 文件,并将所有页面对象添加到我的 page.view 中
[(UIView *)page performSelectorOnMainThread:@selector(addSubview:) withObject:firstScatterPlot waitUntilDone:YES];
但我看不到我的图表:(
我错过了什么?