[iPhone]화면 회전
//탭바에서 화면을 회전시키고자 할 경우 모든 컨트롤러에서 shouldAutorotateToInterfaceOrientation 에서 YES를 반환해 주어야함. //특정 상황에서만 회전을 시키고자 할경우 모든 탭바 컨트롤러에서 동일한 if처리 해줘야함 - (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation { NSLog(@"화면을 회전 시킬지 여부"); return YES; } - (void)willRotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation duration:(NSTimeInterval)duration ..
iOS/자료정리
2011. 4. 13. 14:47
반응형