Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法通过使用按钮将音频文件快进 x2、x4 等?如果没有,你知道这怎么可能吗?
NSTimeInterval *timeIntervel = [yourPlayer currentTime]; timeIntervel = timeIntervel + timeToForword; [yourPlayer setCurrentTime:timeIntervel]; [yourPlayer play];