我意识到 CADisplayLink 会更适合我当前项目的性质,但是,我不太清楚如何实现 CADisplayLink 并替换我的 NSTimer。
下面是我的 NSTimer 的代码
Movement = [NSTimer scheduledTimerWithTimeInterval:0.002 target:self selector:@selector(BarMoving) userInfo:nil repeats:YES];
如何创建一个执行相同功能但更高效的 CADisplayLink?