0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Xcode16.3対応のtips

Last updated at Posted at 2025-04-03

基本的にはライブラリの対応を待ってから、Xcodeのアップデートするのがお勧めです。
ただ、macOS15.4とXcode16.2の相性が非常に悪く、Xcode16.3にアップデートする事で色々問題が解決できましたので、
Xcode16.2→16.3へアップデートする場合の現状の対応したことをまとめておきます

1. TLPhotoPickerを使用している場合

ビルド→該当エラーの箇所を以下に修正

public struct Platform {
    public static var isSimulator: Bool {
        #if targetEnvironment(simulator)
        return true
        #else
        return false
        #endif
    }
}

現在プルリクエストされていますので、それまでの対応で問題なさそうです。(ただ、最近はあまり整備されていない...)

2. gRPCを使用いている場合

ビルド→該当エラー箇所を以下に修正

Traits::template CallSeqFactory<>(f_, *cur_, std::move(arg)));
0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?