NSTimer
我在弹出ASCellNode
时创建了一个ASTableView's
UIViewController
,但计时器没有被释放。
_timer = [NSTimer scheduledTimerWithTimeInterval:3.0 target:self selector:@selector(autoScrollBanner) userInfo:nil repeats:YES];
[[NSRunLoop mainRunLoop] addTimer:_timer forMode:NSRunLoopCommonModes];
我怎样才能停止这个计时器?提前谢谢!