2011-09-12 10 views

答えて

6

、あなたは

[[NSNotificationCenter defaultCenter] addObserver:self 
             selector:@selector(songFinished:) 
              name:AVPlayerItemDidPlayToEndTimeNotification 
              object:[yourAVPlayer currentItem]]; 

-(void)songFinished:(NSNotification *)notification 
{ 
    //Do your next stuff here; 
} 
と同じのための通知を使用することができます
関連する問題