uiscreen पर टैग किए गए जवाब

14
रेटिना डिस्प्ले का पता लगाएं
क्या iOS SDK यह जांचने का एक आसान तरीका प्रदान करता है कि क्या currentDevice में उच्च-रिज़ॉल्यूशन डिस्प्ले (रेटिना) है? सबसे अच्छा तरीका है जो मैंने अभी किया है: if ([[UIScreen mainScreen] respondsToSelector:@selector(scale)] == YES && [[UIScreen mainScreen] scale] == 2.00) { // RETINA DISPLAY }

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 से परिणाम …
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.