«uiinterfaceorientation» 태그된 질문

18
iOS8에서 [UIScreen mainScreen] .bounds.size가 방향에 따라 달라 집니까?
iOS 7과 iOS 8에서 다음 코드를 실행했습니다. UIInterfaceOrientation orientation = [[UIApplication sharedApplication] statusBarOrientation]; BOOL landscape = (orientation == UIInterfaceOrientationLandscapeLeft || orientation == UIInterfaceOrientationLandscapeRight); NSLog(@"Currently landscape: %@, width: %.2f, height: %.2f", (landscape ? @"Yes" : @"No"), [[UIScreen mainScreen] bounds].size.width, [[UIScreen mainScreen] bounds].size.height); 다음은 iOS 8의 결과입니다. Currently landscape: No, width: 320.00, …

4
iOS 8에서 방향 변경을 처리하는 "올바른"방법은 무엇입니까?
누군가 iOS 8에서 세로 및 가로 인터페이스 방향으로 작업하는 데 "올바른"또는 "가장 좋은"접근 방식을 알려주시겠습니까? 그 목적으로 사용하려는 모든 기능이 iOS 8에서 더 이상 사용되지 않는 것 같습니다. 그리고 내 연구에 따르면 명확하고 우아한 대안이 없습니다. 가로 모드인지 세로 모드인지 스스로 결정하기 위해 너비와 높이를 확인해야합니까? 예를 들어, 뷰 컨트롤러에서 …
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.