あまり使ってないので上手に使いたい。
なんとなく使ってる感じなのではっきりさせておきたい。
🤔 ViewModifier - 公式ドキュメント
公式ドキュメントをきちんと読んでみます。
To create consistent views, you might reuse the same view modifier or group of modifiers repeatedly across your views.
一貫したビューを作成するために、同じ ViewModifier、または、それのグループを View で繰り返し再利用することができます。
A modifier that you apply to a view or another view modifier, producing a different version of the original value.
View または別の ViewModifier に適用する Modifier で、元の異なるバージョンを生成します。
struct CaptionTextFormat: ViewModifier {
func body(content: Content) -> some View {
content
.font(.caption)
.foregroundColor(.secondary)
}
}
Text("Some additional information...")
.modifier(CaptionTextFormat())
To make your custom view modifier conveniently accessible, extend the View protocol with a function that applies your modifier
カスタム ViewModifier を便利にアクセスできるようにするには、カスタム View Modefier を適用する関数を使用して View プロトコルを拡張します。
extension View {
func captionTextFormat() -> some View {
modifier(CaptionTextFormat())
}
}
Text("Some additional information...")
.captionTextFormat()
👉 ViewModifier | Apple Developer Documentation
👉 Reducing view modifier maintenance | Apple Developer Documentation
「一貫性のため」か。
確かに新規作成も変更も面倒ですよね。
🤔 Custom ViewModifier vs View extension
@State が必要かどうか。
ViewModifier let you have @State variables, but View extensions do not.
ViewModifier では @State が持てるが、View extension では持てない。
👉 ios - Difference between creating ViewModifier and View extension in SwiftUI - Stack Overflow
View を拡張したい場合は原則として extension を使用し、状態保持が必要な場合のみ `ViewModifier` を実装する。
👉YusukeHosonuma/Effective-SwiftUI · Discussion #31
また、
以下、WWDC 2022 SwiftUI Q&A での話のようです。
What’s the difference between a custom ViewModifier vs View extension
Q: What’s the difference between a custom ViewModifier (without DynamicProperty) that uses some built-in modifiers in body(content:), and a custom View extension func that just use those built-in modifiers?
Similarly, what’s the difference between a custom ViewModifier with some DynamicProperty and a custom View with some DynamicProperty (also has a @ViewBuilder content property to receive content to modify) ?
I think two have the same render result and behavior.
A: Because of the way a ViewModifier is expressed, the engine knows it’s not changing the content passed in and can apply performance optimizations (compared to just an extension on View)
カスタム ViewModifier と View extension の違いは何ですか ?
質問:
body(content:) でいくつかの組み込み modifier を使用するカスタム ViewModifier (DynamicPropertyなし)と、それらの組み込み Modifier を使用するカスタム View extension の違いは何ですか?同様に、いくつかの DynamicProperty を持つカスタム ViewModifier と、いくつかの DynamicProperty を持つカスタム View の違いは何ですか ? (modify する content を受け取るための @ViewBuilder content property もあります)
2つは同じレンダリング結果と動作を持っていると思います。
回答:
ViewModifier の表現方法により、エンジンは渡されたコンテンツを変更していないことを知っており、パフォーマンスの最適化を適用できます。Viewの単なる拡張と比較すると。
👉 WWDC22 SwiftUI Q&A | Swift Discovery
👉 https://wwdc22.slack.com/ - Apple Events にサインインする | Slack
「一度 ViewModifier に切り出すとパフォーマンスが最適化される。」
ということのようです。
一発で View extension にしたほうが間違いなく見通しは良いので、
適正化でどれくらいパフォーマンスが変わるか知りたいところです。
ここで、上の質問で挙げられている4つのパターンのコードを想像してみます。
// body(content:) でいくつかの組み込み Modifier を使用する
// カスタムViewModifier (DynamicPropertyなし)
struct CustomViewModifier: ViewModifier {
var body(content: Content) -> some View {
// use built-in modifier
}
}
// それらの組み込み Modifier を使用する
// カスタム View extension
extension View {
func customModifier() -> some View {
modifier(CustomViewModifier())
}
}
// いくつかの DynamicProperty を持つ
// カスタム ViewModifier
struct CustomViewModifier: ViewModifier {
@State var state: State = .loading
var body(content: Content) -> some View {
// use built-in modifier
}
}
// いくつかの DynamicProperty を持つカスタム View
// modify する content を受け取るための
// @ViewBuilder content property
struct CustomView<Content: View>: View {
@State var state: State = .loading
@ViewBuilder var content: Content
var body: some View {
// use built-in modifier
}
}
この質問者の人、さらっと聞いてるように見えますが、
結構ナイスな質問です。
初心者的には、カスタム View が自然に見えますが。
考えさせられます。
🤔 公式サンプルコード
続いて、WWDC2023 のサンプルコードを見てみます。
private struct BackyardViewportContentModifier: ViewModifier {
var value: BackyardViewportContent
func body(content: Content) -> some View {
content.layoutValue(key: BackyardViewportContentKey.self, value: value)
}
}
fileprivate extension View {
func backyardViewportContent(_ value: BackyardViewportContent) -> some View {
modifier(BackyardViewportContentModifier(value: value))
}
}
struct GenerateDataViewModifier: ViewModifier {
@Environment(\.modelContext) private var modelContext
func body(content: Content) -> some View {
content.onAppear {
DataGeneration.generateAllData(modelContext: modelContext)
}
}
}
fileprivate extension View {
func generateData() -> some View {
modifier(GenerateDataViewModifier())
}
}
ここでは、カスタム ViewModifier の利用のほとんどが、
「データコンテナ」と「通信API」処理まわりです。
これは #Preview でも使いやすいし、定型のパターン。
👉 【 #SwiftData 】ModelContainer の View へのセット
🤔 まとめ
やっぱ、View で切り出したくなるのですが。
[参考]
👉 ViewBuilderやViewModifierでSwiftUIのViewを分割する|TAAT
関連ワード: apple・iOS・iPhone・mac・macOS・Swift・SwiftData・SwiftUI・今さら聞けない・初心者・開発