我们的应用程序现在针对 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;
}
或者在代码库中有两个被覆盖的方法?