AVPlayer 에서 이미지 가로보기 재생
싱글뷰로 프로젝트를 하나 만든 후 가로보기는 LandscapeRight로 설정한다. 그 다음 AVFoundation FrameWork를 추가한다. .h 파일에 버튼과 플레이어를 추가한다. #import <UIKit/UIKit.h> #import <AVFoundation/AVFoundation.h> @interface nemesisViewController : UIViewController { AVPlayer *player; UIButton *btnPlay; } @property ( nonatomic , retain ) IBOutlet UIButton *btnPlay; -( IBAction )btnPlayTouch:( id )sender; @end .m 파일에는 다음과 같이 추가한다. 먼저 가로보기 추가 - ( BOOL )shouldAutorotateToInterfaceOrientation:( UIInterfaceOrientation )interfaceOrientation { // 오른쪽 가로보기 고정 return (interfaceOrientation != UIInterfaceOrientationLandscapeRight ); } 그 다음 프로퍼티 설정 @synthesize btnPlay; 프로퍼티 종료시 설정 - ( void )viewDidUnload { [ super viewDidUnload ]; // Release any retained subviews of the main view. // e.g. self.myOutlet = nil; ...