Core-Plot graph in a UIViewController
im trying to put a Coreplot graph in a UIView. Some questions, should i do it in XIB? or should i do it programmically ?
If so how should i write the codes? etc.开发者_JAVA技巧
I actually have two Classes. one called GraphView which is supposed to hold the Coreplot graph. Another called CorePlotViewController.
Thx for looking guys.
hmm i guess i must be some real newb to ask even this type of question :/ but i guess i solved it .
CorePlotViewController *aCorePlotViewController = [[CorePlotViewController alloc] initWithNibName:@"CorePlotViewController" bundle:nil];
[self.view addSubview :aCorePlotViewController.view];
精彩评论