- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
// Return YES for supported orientations
//return (interfaceOrientation == UIInterfaceOrientationPortrait);
//Portrait 세로
//Landscape 가로
//가로보기 고정
//시계방향 90도
//return (interfaceOrientation >= UIInterfaceOrientationLandscapeLeft);
//가로방향 모두 지원
//return (interfaceOrientation >= UIInterfaceOrientationLandscapeRight);
//세로보기 고정(정방향 & 180도)
//return (interfaceOrientation <= UIInterfaceOrientationPortraitUpsideDown);
//정방향 세로 고정
//return (interfaceOrientation <= UIInterfaceOrientationPortrait);
//모든 로테이션 허용
return YES;
}