Questions marquées «uiscreen»

14
Détecter l'affichage de la rétine
Le SDK iOS offre-t-il un moyen facile de vérifier si le périphérique actuel dispose d'un écran haute résolution (rétine)? La meilleure façon de le faire maintenant est: if ([[UIScreen mainScreen] respondsToSelector:@selector(scale)] == YES && [[UIScreen mainScreen] scale] == 2.00) { // RETINA DISPLAY }

18
Est-ce que [UIScreen mainScreen] .bounds.size devient dépendant de l'orientation dans iOS8?
J'ai exécuté le code suivant dans iOS 7 et 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); Voici le résultat d'iOS 8: …
En utilisant notre site, vous reconnaissez avoir lu et compris notre politique liée aux cookies et notre politique de confidentialité.
Licensed under cc by-sa 3.0 with attribution required.