簡體   English   中英

在xcode 4.2上播放時沒有背景音樂

[英]No background music while playing on xcode 4.2

我使用以下代碼:mY Sound放在myapp / Shared Resources / background_music.aiff中

@synthesize window = _window;
- (void)dealloc
{
    [backgroundSound release];
    [_window release];
    [super dealloc];
}

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
    // Override point for customization after application launch.
    sleep(3);
     //this variable can be named differently

    NSURL *url = [NSURL fileURLWithPath:[NSString stringWithFormat:@"%@/background_music.aiff",[[NSBundle mainBundle] resourcePath]]];
    NSError *error;

    backgroundSound = [[AVAudioPlayer alloc] initWithContentsOfURL:url error:&error];

     backgroundSound.numberOfLoops = -1;
    //>> this will allow the file to //play an infinite number of times */

    return YES;
}



@interface AppDelegate : UIResponder <UIApplicationDelegate>{
    AVAudioPlayer *backgroundSound;

}

@property (strong, nonatomic) UIWindow *window;
@end

沒有錯誤,也沒有循環聲。請告訴我發生了什么。

最好的祝福

好吧,我加了[background play]; 並且它已經開始工作正常.....我在跟隨的教程中沒有提到..

 player = [[MPMoviePlayerController alloc] initWithContentURL:url];
    player.movieSourceType = MPMovieSourceTypeStreaming;
    if(player.playbackState == MPMoviePlaybackStatePlaying)
        [player stop];
    [player play];

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM