IOS - 当移动到一个单独的类时播放mp3失败

时间:2012-07-21 11:52:15

标签: ios audio refactoring mp3

我成功地在课堂上播放了一个mp3文件。但是,当我将功能移到单独的类时,它会失败。

这是工作代码:

标题:

#import <AVFoundation/AVFoundation.h>

@interface QuestionController : UIViewController 
<UITableViewDataSource, UITableViewDelegate, UISplitViewControllerDelegate>
{
    AVAudioPlayer *audioPlayer;

}

工作代码:

NSURL *url = [NSURL fileURLWithPath:[NSString stringWithFormat:@"%@/A.mp3", [[NSBundle mainBundle] resourcePath]]];

    NSError *error;
    audioPlayer = [[AVAudioPlayer alloc] initWithContentsOfURL:url error:&error];
    audioPlayer.numberOfLoops = 0;

    if (audioPlayer == nil)
        NSLog(@"audio errror: %@",[error description]);             
    else 
        [audioPlayer play];

这是新课程:

部首:

#import <Foundation/Foundation.h>
#import <AVFoundation/AVFoundation.h>


    @interface AudioPlayer : NSObject {

    }

    - (void *) playAudioFile:(NSString *) mp3File;

    @end

实施:

  #import "AudioPlayer.h"

    @implementation AudioPlayer

    - (void *) playAudioFile:(NSString *) mp3File {

        NSLog(@"mp3file to play: %@", mp3File ); 

        NSURL *url = [NSURL fileURLWithPath:[NSString stringWithFormat:@"%@", mp3File, [[NSBundle mainBundle] resourcePath]]];

        NSError *error;

        AVAudioPlayer *audioPlayer;
        audioPlayer = [[AVAudioPlayer alloc] initWithContentsOfURL:url error:&error];
        audioPlayer.numberOfLoops = 0;

        if (audioPlayer == nil) {
            NSLog(@"audio errror: %@",[error description]);
        }
        else {
            [audioPlayer play];
        }
        [audioPlayer release];

        return 0; 
    }   

    @end

这是调用代码:

   AudioPlayer *audioPlayer = [[AudioPlayer alloc] init];

   [audioPlayer playAudioFile:@"/A.mp3"];

但是,当它在单独的类中运行时,它无法成功创建播放器并转到“audio player == nil”分支

这是输出:

012-07-21 07:14:54.480 MyQuiz[6655:207] mp3file to play: /A.mp3
2012-07-21 07:15:40.827 MyQuiz[6655:207] audio errror: Error Domain=NSOSStatusErrorDomain Code=-43 "The operation couldn’t be completed. (OSStatus error -43.)"

网址是“file://localhost/A.mp3”

任何想法我做错了什么?当我重构单独的方法时,我总是遇到麻烦。这令人沮丧。

2 个答案:

答案 0 :(得分:1)

弹出的第一件事是你在调用播放后立即释放音频播放器,而在&#34;工作&#34;这不会发生。

解决此问题的一个好方法是在Singleton类中实例化音频播放器一次。该课程应负责在整个应用程序中播放音频,并应管理所有课程的任何请求。通过这种方式,您可以正确管理内存,并且AVFoundation框架仅在一个地方使用。

另外,要获取所需路径,请使用:

NSURL *url = [NSURL fileURLWithPath:[[NSString stringWithFormat:@"%@", mp3File] stringByAppendingPathComponent:[[NSBundle mainBundle] resourcePath]]];

答案 1 :(得分:1)

您在网址中有错误,请更改此行

NSURL *url = [NSURL fileURLWithPath:[NSString stringWithFormat:@"%@", mp3File, [[NSBundle mainBundle] resourcePath]]];

到此:

NSURL *url = [NSURL fileURLWithPath:[NSString stringWithFormat:@"%@%@", [[NSBundle mainBundle] resourcePath], mp3File]];