iOS 7:AVAudioPlayer的简单音频控件?

前端之家收集整理的这篇文章主要介绍了iOS 7:AVAudioPlayer的简单音频控件?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我刚开始使用xCode编写iOS应用程序,并且找到工作原理并不是很容易也不直观.我对此很新,我的应用程序非常缓慢^^.无论如何,我现在正在尝试iOS7上的东西,至少.

我设法用海关单元和动态高度创建动态表格,但现在我找不到任何问题的解决方案……也许我没有在正确的地方搜索…无论如何.

我有一个音频播放,感谢这些线路:

NSString *path = [[NSBundle mainBundle] pathForResource:@"song" ofType:@"mp3"];
AVAudioPlayer *audio = [[AVAudioPlayer alloc]
initWithContentsOfURL:[NSURL fileURLWithPath:path] error:nil];

;
;

现在,这很棒,我的音频播放.但我没有任何控制.我成功添加了播放/暂停按钮,但如何在音频内导航?我是否必须编码所有界面?没有简单的界面与按钮和响应进度条?

如果我必须编码,那么,哼……我从哪里开始?

非常感谢!

解决方法

使用带有AVAudioPlayer的playAtTime:Method的UiSlider,AVAudioPlayer没有内置的搜索栏.

看看这个示例代码,它在类avTouchController中实现了你想要的

https://developer.apple.com/library/ios/samplecode/avTouch/Introduction/Intro.html

在你的界面添加一个UiSlider,并将valueChanged:链接方法seekTime:

在.h

@property (nonatomic,weak) IBOutlet UiSlider *seekbar;

@property (nonatomic,strong) AVAudioPlayer *audioPlayer;

@property (nonatomic,strong) NSTimer *updateTimer;

加载AVAudioPlayer后在.m中的viewDidLoad中,

NSURL *fileURL = [[NSURL alloc] initFileURLWithPath: [[NSBundle mainBundle] pathForResource:@"There's A Long,Long Trail A-Winding" ofType:@"mp3"]];

AVAudioPlayer *audio = [[AVAudioPlayer alloc]
                        initWithContentsOfURL:fileURL error:nil];

self.audioPlayer = audio;

self.seekbar.minimumValue = 0;

self.seekbar.maximumValue = self.audioPlayer.duration;

[[self audioPlayer] play];

self.updateTimer =     [NSTimer scheduledTimerWithTimeInterval:0.1 target:self selector:@selector(updateSeekBar) userInfo:nil repeats:YES]

添加以下方法

- (void)updateSeekBar{
float progress = self.audioPlayer.currentTime;
[self.seekbar setValue:progress];
}

- (IBAction)seekTime:(id)sender {

self.audioPlayer.currentTime = self.seekbar.value;

}
原文链接:https://www.f2er.com/iOS/333101.html

猜你在找的iOS相关文章