iPhone Multi touch interactive to CorePlot
问题 I'm developing an iPhone application with core-plot chart. With the help of some tutorials, i managed to do it with single touch and drag. How can I make it with multiple touch and drag? Anybody please help me? ViewController.m - (void)viewDidLoad { [super viewDidLoad]; EskPlotTheme *defaultTheme = [[EskPlotTheme alloc] init]; linePlot = [[EskLinePlot alloc] init]; linePlot.delegate = self; [linePlot renderInLayer:lineHostingView withTheme:defaultTheme]; [defaultTheme release]; } EskLinePlot