1琐谤、打開橫豎屏開關(guān)
2伐庭、因為屏幕翻轉(zhuǎn)后width和height是相反的
/**屏幕翻轉(zhuǎn)后width和height互換*/
- (void)viewWillTransitionToSize:(CGSize)size withTransitionCoordinator:(id<UIViewControllerTransitionCoordinator>)coordinator
{
_imageView.frame = CGRectMake(0, 0, size.width, size.height);
}
github地址:https://github.com/WangJxin1992/Demo.git
后續(xù)待完善!