iOS判断当前屏幕方向的方向

得到屏幕方向的有几种方法:
viewController 的方向, self.interfaceOrientation
设备方向:[[UIDevicecurrentDevice]orientation];
当前程序方向: [[UIApplication sharedApplication] statusBarOrientation];
 
 
原文地址:https://www.cnblogs.com/chenjohney/p/3216452.html