2011-09-12 65 views

回答

6

为了回答你的第一个问题,您可以使用通知书一样

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

-(void)songFinished:(NSNotification *)notification 
{ 
    //Do your next stuff here; 
} 
相关问题