作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我知道这是一个重复的问题,但我没有找到确切的答案。我正在使用 AVAudioPlayer。现在我有两个按钮前进和后退。当用户点击前进按钮时,音频将向前移动 5 秒;当用户点击倒带按钮时,音频将倒带 5 秒。我该怎么做呢?在此先感谢您的帮助。
最佳答案
将玩家时间向前和向后的方法放在下面
- (IBAction)btnForwardClicked:(id)sender
{
int currentTime = [player currentTime];
[player setCurrentTime:currentTime+5];
}
- (IBAction)btnBackwardClicked:(id)sender
{
int currentTime = [player currentTime];
[player setCurrentTime:currentTime-5];
}
这里player是avaudio播放器的对象
AVAudioPlayer *player;
关于iphone - 移动音频播放器 5 秒快退和快进,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18010494/
我是一名优秀的程序员,十分优秀!