2011-09-12 68 views

回答

6

爲了回答你的第一個問題,您可以使用通知書一樣

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

-(void)songFinished:(NSNotification *)notification 
{ 
    //Do your next stuff here; 
} 
相關問題