Existe t il une méthode pour obtenir les iPhones d'orientation? Je n'ai pas besoin qu'elle en degrés ou en radians, je veux le retour d'un UIInterfaceOrientation objet. J'ai juste besoin d'un if-else de construction comme
if(currentOrientation==UIInterfaceOrientationPortrait ||currentOrientation==UIInterfaceOrientationPortraitUpsideDown) {
//Code
}
if (currentOrientation==UIInterfaceOrientationLandscapeRight ||currentOrientation==UIInterfaceOrientationLandscapeLeft ) {
//Code
}
Merci à l'avance!