Views 18458 Votes 0 Comment 0
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print
iphone에서 화면에 대한 회전을 시키기 위한 간단한 코드는..
[[UIDevice currentDevice] setOrientation:orientation] 이다.
하지만, 이 코드는 non-public API 사용으로 인한 리젝 사유가 되므로 사용할 수 없기 때문에 아래와 같이 회전 관련 메서드를 만들어주어야 한다.

//화면 회전 처리
-(void)SetDeviceOrientation:(UIInterfaceOrientation)orientation
{
	
	//가로보기 강제
	if(orientation==UIInterfaceOrientationPortrait)
	{
		orientation=UIInterfaceOrientationLandscapeRight;
	}
	//세로보기 강제
	else if(orientation==UIInterfaceOrientationLandscapeRight)
	{
		orientation=UIInterfaceOrientationPortrait;			
	}	
	
	
	int radian=0;
	CGRect viewFrame = CGRectMake(0.0f, 0.0f, 320.0f, 480.0f);
	
	[UIView beginAnimations:nil context:nil];
	[UIView setAnimationDuration: 0.2];
	
	if(orientation==UIInterfaceOrientationLandscapeLeft
	   || orientation==UIInterfaceOrientationLandscapeRight)
	{
		viewFrame = CGRectMake(0.0f, 0.0f, 480.0f, 320.0f);
		
	}	
	if(orientation==UIInterfaceOrientationPortrait)
	{
		radian=0;
	}
	else if(orientation==UIInterfaceOrientationPortraitUpsideDown)
	{
		radian=180;
	}
	else if(orientation==UIInterfaceOrientationLandscapeRight)
	{
		radian=90;
	}
	else if(orientation==UIInterfaceOrientationLandscapeLeft)
	{
		radian=270;
	}
	
	//뷰 회전 시키기
	CGAffineTransform transform =
	CGAffineTransformMakeRotation(degreesToRadian(radian));
	
	self.view.transform=transform;
	self.view.bounds=viewFrame;
	
	[UIView commitAnimations];
}

?

  1. 리팩토링 계획안

  2. [windows] 윈도우즈 콘솔에서 정품인증 하는 방법

  3. 사이버보안실무 발표자료 (2017.06.08)

  4. 캘리포니아 운전면허 족보

  5. [android] 간단한 SQLIite 예제

  6. [android] SQLiteOpenHelper를 이용한 DBManager

  7. IT감사 기법 시험

  8. [coding] Find all anagrams in a string

  9. [coding] 공부해야 하는거 ㅋㅋ

  10. [android] 안드로이드 앱 문서 샘플 - NCComix

  11. 캘리포니아 운전면허 문제

  12. [mac] Homebrew/rvm/cocoapod setting

  13. [ios] VIN Scanner (VIN barcode) 스캐너

  14. [linux] iptables 초간단 세팅 스크립트

  15. 영어. 불규칙 동사 정리

  16. How to completely Uninstall Coda

Board Pagination Prev 1 ... 66 67 68 69 70 ... 74 Next
/ 74