私はメソッド -(void)showLyrics{} を別のメソッドから呼び出したいのですが、一定の時間が経過すると、連続する各呼び出し間の時間呼び出しが異なります。私はこのようにしています
[self performSelector:@selector(showLyrics) withObject:nil afterDelay:2];
[self performSelector:@selector(showLyrics) withObject:nil afterDelay:5];
[self performSelector:@selector(showLyrics) withObject:nil afterDelay:10];
[self performSelector:@selector(showLyrics) withObject:nil afterDelay:12];
体はより良い方法を知っていますか??