iphone - UIMoviePlayerControllerDidExitFullscreenNotification NSNotification not working in iOs 8 -
[[nsnotificationcenter defaultcenter] addobserver:self selector:@selector(youtubestarted:) name:@"uimovieplayercontrollerdidenterfullscreennotification" object:nil]; [[nsnotificationcenter defaultcenter] addobserver:self selector:@selector(youtubefinished:) name:@"uimovieplayercontrollerdidexitfullscreennotification" object:nil];
uimovieplayercontrollerdidexitfullscreennotification nsnotification not working in ios 8
i faced same problem ended using uiwindowdidbecomevisiblenotification
, uiwindowdidbecomehiddennotification
, embedded youtube videos(assuming looking @ selector method names)
[[nsnotificationcenter defaultcenter] addobserver:self selector:@selector(enteredfullscreen:) name:uiwindowdidbecomevisiblenotification object:nil]; [[nsnotificationcenter defaultcenter] addobserver:self selector:@selector(exitedfullscreen:) name:uiwindowdidbecomehiddennotification object:nil];
above patch work around,(hope helps)
ios iphone ipad ios8 nsnotificationcenter
No comments:
Post a Comment