私たちのアプリは現在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;
}
または、コードベースに両方のオーバーライドされたメソッドがありますか?