The Easiest Way to Save and Share Code Snippets on the web

Untitled

objc

posted: Aug, 6th 2012 | jump to bottom

- (void)viewDidLoad
{
    [super viewDidLoad];
    ShinobiChart *chart = [[[ShinobiChart alloc] initWithFrame:self.view.frame
                                          withPrimaryXAxisType:SChartAxisTypeNumber
                                          withPrimaryYAxisType:SChartAxisTypeNumber] autorelease];
 
    chart.autoresizingMask = ~UIViewAutoresizingNone;
    chart.datasource = self;
 
    chart.legend = [[[SChartLegend alloc] initWithChart:chart] autorelease];
 
    [self.view addSubview:chart];
}
763 views