2012-04-25 6 views
0

UIWebView가 있습니다. 그 안에는 비디오 용 YouTube 플레이어가있는 경우가 있습니다. 사용자는 전체 화면으로 비디오를 볼 수 있습니다. 그러나 사용자가 전체 화면으로 비디오를 본 다음 회전하면 willAnimateToInterfaceOrientation이 호출되지 않습니다. 그래서 저는 이것을 수동으로 호출 할 계획입니다. 문제는 누군가 YouTube 동영상을 해산 할 때마다 어떻게 확인합니까?youtube video가 전체 화면에서 닫히는 것을 확인하면

답변

0

viewDidLoad

[[NSNotificationCenter defaultCenter] addObserver:self 
       selector:@selector(didRotate:) 
       name:@"UIDeviceOrientationDidChangeNotification" object:nil]; 

- (void) didRotate:(NSNotification *)notification{ 
UIDeviceOrientation orientation = [[UIDevice currentDevice] orientation]; 

    //Handle rotation 

} 
UIDeviceOrientationDidChangeNotification 자신을 등록하십시오
관련 문제