Avatar
Avatar
shiz
コンパイラ周り全然詳しくないんですが、swift_attrがあればUIActor(MainActor)を付けて、なければ何も付けない、という意味なんですかね?(このswift_attrが何を指しているのかがよくわからないですが…) https://clang.llvm.org/docs/AttributeReference.html#swift-attr __attribute__((swift_attr("swift attribute”)))はattributeをObjective-Cに付けるものみたいですね。 __attribute__((swift_attr("swift attribute"))). A general-purpose Objective-C attribute to allow one to provide Swift attributes directly. In the context of concurrency, this allows Objective-C APIs to be annotated with a global actor (e.g., @MainActor) https://github.com/apple/swift-evolution/blob/5bf0cf0b00169297ba9bc30291477cbbe1343145/proposals/0297-concurrency-objc.md#additional-objective-c-attributes
おおっ詳細にありがとうございますー! そうなると AppDelegateUIViewController などに、明示的に @MainActor を付ける必要はなさそうですね…。