18
क्या [UIScreen mainScreen] .bounds.size iOS8 में अभिविन्यास-निर्भर बन रहा है?
मैंने 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 से परिणाम …