How can I add 5 seconds to my current playing Time? Actually this is my code:
CMTime currentTime = music.currentTime;
I can´t use CMTimeGet
Here is one way:
CMTimeMakeWithSeconds(CMTimeGetSeconds(music.currentTime) + 5, music.currentTime.timescale);