Phases

AsyncEmbeddingPhase for SwiftUI

AsyncEmbeddingPhase は、埋め込みタイプのエクスペリメントを読み込むプロセスの状態を表す列挙型です。

定義

public enum AsyncEmbeddingPhase {
    case loading
    case completed(ComponentView)
    case failed(Error)
    case notFound
}
public struct ComponentView: View

EmbeddingPhase for UIKit

EmbeddingPhase は、埋め込みタイプのエクスペリメントを読み込むプロセスの状態を表す列挙型です。

Definition

public enum EmbeddingPhase {
    case loading
    case completed(UIView)
    case failed(Error)
    case notFound
}

RemoteConfigPhase

RemoteConfigPhase は、リモートコンフィグを読み込むプロセスの状態を表す列挙型です。これを使用して RemoteConfigVariant を取得できます。

Definition

public enum RemoteConfigPhase {
    case loading
    case completed(RemoteConfigVariant)
    case failed(Error)
    case notFound
}

Last updated