判断设备的状态
UIApplication* app = [UIApplication sharedApplication];
// 判断设备方向状态,做响应的操作
if(app.statusBarOrientation == UIInterfaceOrientationPo
}else if(app.statusBarOrientation == UIInterfaceOrientationLa
}
设备状态,分以下几种:
以iPhone或者iPad的Home按钮为参照:
UIInterfaceOrientationPo
UIInterfaceOrientationPo
UIInterfaceOrientationLa
UIInterfaceOrientationLa
程序中,根据的方向不同做不同的操作!