1

我有一个像这样的散点图类:

@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];

但我看不到我的图表:(

我错过了什么?

4

1 回答 1

1

好的,我做到了。我要添加到视图(页面)中的元素对象应该是 CPTGraphHostingView。比一切都会好。

[(UIView *)page performSelectorOnMainThread:@selector(addSubview:) withObject:firstScatterPlot waitUntilDone:YES];
于 2013-02-15T09:23:22.837 回答