2012-04-01 6 views
0

을 사용하여 오디오 스트림을 재생하고 있습니다. 예를 들어 전화를 받았을 때와 같이 서비스를 중단하는 데 문제가 있습니다. 내 선수는 viewcontroller으로 선언되었고 나는 applicationdidresignactive에서 내 appdelegate에 뭔가를해야한다고 생각하니? 내 appdelegate이 내 moviePlayer을 인식하지 못하면 어떻게해야합니까? 내가 가서 학습하고ppdelegate에서 applicationwillresignactive의 mpmovieplayer를 호출하려면 어떻게해야합니까?

여기

을 :) 즐기고 그래서 나는 아이폰 개발에 새로운 내가 viewcontroller

-(IBAction)play1MButton:(id)sender{ 

    [[NSNotificationCenter defaultCenter] addObserver:self 
     selector:@selector(moviePlayerStatus:) 
     name:MPMoviePlayerPlaybackStateDidChangeNotification 
     object:nil]; 

    NSString *url = @"http://22.22.22.22:8000/listen.pls"; 

    [self.activityIndicator startAnimating]; 

    moviePlayer = [[MPMoviePlayerController alloc] 
     initWithContentURL:[NSURL URLWithString:url]]; 

    [moviePlayer prepareToPlay]; 

    [[NSNotificationCenter defaultCenter] addObserver:self 
     selector:@selector(moviePlayerLoadStateChanged:) 
     name:MPMoviePlayerLoadStateDidChangeNotification 
     object:nil]; 
} 

-(void) moviePlayerStatus:(NSNotification*)notification { 

    //MPMoviePlayerController *moviePlayer = notification.object; 
    MPMoviePlaybackState playbackState = moviePlayer.playbackState; 

    if(playbackState == MPMoviePlaybackStateStopped) { 
     NSLog(@"MPMoviePlaybackStateStopped"); 
    } else if(playbackState == MPMoviePlaybackStatePlaying) { 
     NSLog(@"MPMoviePlaybackStatePlaying"); 
    } else if(playbackState == MPMoviePlaybackStatePaused) { 
     NSLog(@"MPMoviePlaybackStatePaused"); 
    } else if(playbackState == MPMoviePlaybackStateInterrupted) { 
     NSLog(@"MPMoviePlaybackStateInterrupted"); 
    } else if(playbackState == MPMoviePlaybackStateSeekingForward) { 
     NSLog(@"MPMoviePlaybackStateSeekingForward"); 
    } else if(playbackState == MPMoviePlaybackStateSeekingBackward) { 
     NSLog(@"MPMoviePlaybackStateSeekingBackward"); 
    } 
} 

- (void) moviePlayerLoadStateChanged:(NSNotification*)notification { 
    if ([moviePlayer loadState] != MPMovieLoadStateUnknown) 
    { 
     [[NSNotificationCenter defaultCenter] removeObserver:self 
         name:MPMoviePlayerLoadStateDidChangeNotification 
          object:moviePlayer]; 

     [moviePlayer play]; 

     [self.activityIndicator stopAnimating]; 
     [moviePlayer setFullscreen:NO animated:NO]; 
    } 

} 

과에서 뭘하는지되어있어 appdelegate

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions 
{  
    // Override point for customization after application launch. 
    self.window.rootViewController = self.viewController; 
    [self.window makeKeyAndVisible]; 


    AVAudioSession *audioSession = [AVAudioSession sharedInstance]; 

    NSError *setCategoryError = nil; 
    [audioSession setCategory:AVAudioSessionCategoryPlayback error:&setCategoryError]; 
    if (setCategoryError) { 

    } 

    NSError *activationError = nil; 
    [audioSession setActive:YES error:&activationError]; 
    if (activationError) { 
    } 

나는 오류를 잡아낼 수 있지만, 어떻게 내가 appdelegate에서 플레이어를 사용합니까?

+0

누구? 나는 아직도 그것을 이해할 수 없다 !! : ( – ss30

답변

1

MPMoviePlayerController가있는 클래스를 가져 오십시오. 이 코드는 AppDelegate.h "import "YourClassNameWithThePlayer.h""에서 사용하십시오. 아마도 도움이 될 수 있습니다. 나는 또한 이것에 새로운 오전, 당신이 그것을 고려 바랍니다.

+0

고마워, 나는 이것에 대해 더 많은 독서를했고 나는 내가해야 할 일을 해냈다 고 생각한다 ... 나는 아직도 xcode를 탐구하고있다 ..... – ss30