MPMovieNaturalSizeAvailableNotification not working?

I added a notification with the following code,

[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(videoLoadingComplete) name:MPMovieNaturalSizeAvailableNotification object:self.streamPlayer]; 

but it was not included in the videoLoadingComplete function even after playing the videos.

+4
source share
1 answer

You can use the following code

 [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(moviestart:) name:MPMoviePlayerLoadStateDidChangeNotification object:nil]; -(void)moviestart { //your code here } 
+1
source

Source: https://habr.com/ru/post/1438584/


All Articles