Domande taggate «uiscreen»

14
Rileva display Retina
IOS SDK offre un modo semplice per verificare se currentDevice ha un display ad alta risoluzione (retina)? Il modo migliore che ho trovato per farlo ora è: if ([[UIScreen mainScreen] respondsToSelector:@selector(scale)] == YES && [[UIScreen mainScreen] scale] == 2.00) { // RETINA DISPLAY }

18
[UIScreen mainScreen] .bounds.size sta diventando dipendente dall'orientamento in iOS8?
Ho eseguito il seguente codice in iOS 7 e 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); Quanto segue è il risultato …
Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.