아이폰 세로고정 (1) 썸네일형 리스트형 [iOS프로그래밍] 가로모드, 세로모드 고정시키기 1. 세로 고정 - (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation { return (interfaceOrientation == UIInterfaceOrientationPortrait || interfaceOrientation ==UIInterfaceOrientationPortraitUpsideDown); } 2. 가로 고정 - (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation { return (interfaceOrientation == UIInterfaceOrientationLand.. 이전 1 다음