最近搞横竖屏,获得一些心得,特记录下来。
做横竖屏最重要的是确定横竖屏响应的接口。目前我知道的有两种方式 :
1.使用通知。
- (void)viewDidLoad
{
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(_orientationDidChange:) name:UIDeviceOrientationDidChangeNotification object:nil];
}
- (void)dealloc {
[[