我正在开发iphone应用程序,我正在显示相机视图,使用滚动条放大缩小。 我想添加功能,当用户将设备从portarit旋转到横向或反之亦然时,相机视图应相应调整。
我该如何解决它 请帮忙
感谢, Aaryan
答案 0 :(得分:3)
您的UIViewController需要实现以下方法:
- (void)willRotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation duration:(NSTimeInterval)duration
- (void)didRotateFromInterfaceOrientation:(UIInterfaceOrientation)fromInterfaceOrientation
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation