我收到以下代码的上述编译器警告。我理解接口和设备方向之间的区别,但不确定如何修改以删除警告。有人可以帮忙吗?
- (void)willRotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation duration:(NSTimeInterval)duration {
if (ViewController != NULL) {
[ViewController configureForDeviceOrientation:toInterfaceOrientation];
}
if (Controller != NULL) {
[Controller configureForDeviceOrientation:toInterfaceOrientation];
}
currentOrientation = toInterfaceOrientation;
}
答案 0 :(得分:6)
只需投出[Controller configureForDeviceOrientation:(UIDeviceOrientation)toInterfaceOrientation];
答案 1 :(得分:2)
您的方法configureForDeviceOrientation:
期望传递UIDeviceOrientation
枚举,而不是您传递的UIInterfaceOrientation
。
如果您更正方法以接受UIInterfaceOrientation
方法中的willRotateToInterfaceOrientation:
,那么您将解决此问题。