0

これにはいくつかの問題があるかもしれないと聞いたことがありますが、公式の発表は見つかりませんでした。以前のバージョンが iOS 5.1 をサポートしていて、新しいバージョンが iOS 6.0 のみをサポートしている場合、新しいバージョンのアプリを AppStore にリリースすることはできますか?

4

3 に答える 3

2

変更のほとんどは、古くなった構文を処理し、xCode の自動修正/ターミナルは、新しく必要なメソッドなどを提供します。お役に立てれば。

于 2012-11-01T17:17:42.103 に答える
2

まったく問題ありません。プロジェクトの配置ターゲット設定を変更し、更新を送信するだけです。人々は、サポートされている iOS の最小バージョンを変更することで、過去 4 年間アプリを更新してきました。

于 2012-11-01T17:14:58.700 に答える
0

私だけが知っているのは、新しい方法での向きの処理...これは古いコードで変更される予定です...

// iOS 5 interface orientation handling
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation {
    return (toInterfaceOrientation == UIInterfaceOrientationPortrait);
}

//iOS6 interface orientation handling

- (BOOL)supportedInterfaceOrientations {
    return UIInterfaceOrientationMaskPortrait;
}

- (void)willRotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation duration:(NSTimeInterval)duration
{

}

should rotate メソッドは非推奨であり、iOS 6 以降は呼び出されませんが、いずれにせよ、それを使用していた方法で使用することを意図したものではありませんでした。

于 2012-11-01T17:16:52.630 に答える