现在我们的应用程序的目标是ios5.1。 和安装MT 6.0.2之后过时的警告,填补了构建日志。 如果过时方法保持静止源还是应该被取代?
举例来说,我应该替换为以下:
public override bool ShouldAutorotateToInterfaceOrientation (UIInterfaceOrientation toInterfaceOrientation)
{
switch(toInterfaceOrientation) {
case UIInterfaceOrientation.LandscapeLeft:
case UIInterfaceOrientation.LandscapeRight:
return true;
default:
return false;
}
}
同
public override UIInterfaceOrientationMask GetSupportedInterfaceOrientations ()
{
return UIInterfaceOrientationMask.Landscape;
}
或具有两者的代码库中的重写方法呢?