4
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

はじめに

現在プロジェクトの都合上、Xcode 15.3を使用しており、Xcodeのサポートページの最低サポートOSバージョンに、macOS Sonoma 14と記載がありました。

Screenshot 2024-12-13 at 10.16.03.png

引用元:

それなら、macOS Sequoiaにアップグレードしても問題なかろうとアップグレードして開こうとしたところ、

Screenshot 2024-12-13 at 10.28.04.png

開けなかったので、関連情報セクションに記載の記事中の少し邪道な方法で解決できたため、紹介します。

この記事で解決できること

  • macOS SequoiaでXcode 15.xxが使用できるようになる
  • (副次的効果)macOS Sequoia上のXcode 16上で使用可能なPredictive Code Completion機能が使用できるようになる

参考: Xcode 16以降から導入されたPredictive Code Completionについて

解決方法

Xcodeの起動スクリプトを実行すると、正常に起動しました。

マニュアルに実行する場合

  1. Finderを開き、⌘ + AでApplicationディレクトリに遷移(画像ではXcodeのバージョン16と区別するために、Xcode_153にリネームしています)

    Application Directory

  2. Xcode 15.xxxのアプリアイコンを右クリックして、Show Package Contentsをクリック

    Show Package Contents

  3. 以下のディレクトリまで遷移
    ./Contents/MacOS

  4. Xcodeスクリプトを実行

    Execute Xcode Script

シンプルに実行する場合

  1. Finderを開く

  2. ⌘ + Shift + Gで表示されたwindowに以下のパスを入力(アプリ名はよしなに書き換えてください)
    
    /Applications/{Xcodeのアプリ名}.app/Contents/MacOS/Xcode
          
    // アプリ名が`Xcode`の場合は以下の通り
    /Applications/Xcode.app/Contents/MacOS/Xcode
      

  3. Xcodeスクリプトを実行

まとめ

いかがでしたでしょうか?
今後も定期的にアップしますので、何かお気づきの点や、ここをこう改善した方が良さそうなど是非是非コメントお待ちしております!

参考にした元の記事

4
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?