2

我需要在 ScrollView 前面放置一个半透明矩形,但是当我将所有内容(矩形和 ScrollView)放在 ZStack 内时,滚动和触摸事件在此矩形内停止工作。

Atm 我正在使用 .background 修饰符,因为它不会影响滚动,但我仍在寻找方法使其在放置在我的 ScrollView 上方(前面)的矩形时正常工作。

有什么办法可以将 View 放在 ScrollView 上,这样它就不会影响它的功能?

这是我现在使用的代码(我更改了颜色并删除了不透明度以使对象可见,因为我的原始矩形是半透明的并且包含几乎不可见的渐变)

struct ContentView: View {
    
    var body: some View {
        ZStack {
            
            ScrollView {
                LazyVStack(spacing: 0) {
                    ForEach(0...100, id:\.self) { val in
                        ZStack {
                            Text("test")
                                .font(.system(size: 128))
                        } // ZStack
                        .background(Color.blue)
                    } // ForEach
                }
            }
            .background(RadialGradient(gradient: Gradient(stops: [
                                                            .init(color: Color.blue, location: 0),
                                                            .init(color: Color.red, location: 1)]), center: .top, startRadius: 1, endRadius: 200)
                            .mask(
                                VStack(spacing: 0) {
                                    Rectangle()
                                        .frame(width: 347, height: 139)
                                        .padding(.top, 0)
                                    Spacer()
                                }
                            ))
            
        }
    }
}
4

2 回答 2

3

这是一种可能的开始方法 - 使用 UIVisualEffectView。Blur视图取自How do I pass a View into a struct 同时获得它的高度?话题。

演示

struct ScrollContentView: View {
    
    var body: some View {
        ZStack {
            
            ScrollView {
                LazyVStack(spacing: 0) {
                    ForEach(0...100, id:\.self) { val in
                        ZStack {
                            Text("test")
                                .font(.system(size: 128))
                        } // ZStack
                        .background(Color.blue)
                    } // ForEach
                }
            }
            Blur(style:  .systemThinMaterialLight)
                .mask(
                    VStack(spacing: 0) {
                        Rectangle()
                            .frame(width: 347, height: 139)
                            .padding(.top, 0)
                        Spacer()
                    }
                )
                .allowsHitTesting(false)
        }
    }
}
于 2021-01-06T11:40:08.957 回答
0

我决定在这里发布一个解决方案。它基于 Asperi 建议的方法。

2Asperi:谢谢你,我一如既往地感谢你的帮助。

我在将 .opacity & mask 应用到 Blur 时玩了一点,但没有奏效。

所以我将掩码应用于 makeUIView 内的 .layer 属性,它工作正常

import SwiftUI

struct ContentView: View {
    
    var body: some View {
        ZStack {
            ZStack {
            ScrollView {
                LazyVStack(spacing: 0) {
                    ForEach(0...100, id:\.self) { val in
                        ZStack {
                            Text("test")
                                .font(.system(size: 128))
                        } // ZStack
                        .background(Color.white)
                    } // ForEach
                }
            }
                Blur(style: .systemThinMaterial)
                                .mask(
                                    VStack(spacing: 0) {
                                        Rectangle()
                                            .frame(width: 347, height: 139)
                                            .padding(.top, 0)
                                        Spacer()
                                    }
                                )
                    .allowsHitTesting(false)
            }
        }
    }
}

struct Blur: UIViewRepresentable {
    var style: UIBlurEffect.Style = .systemMaterial
    func makeUIView(context: Context) -> UIVisualEffectView {
        
        let blurEffectView = UIVisualEffectView(effect: UIBlurEffect(style: style))
        
        let gradientMaskLayer = CAGradientLayer()
        
        gradientMaskLayer.type = .radial
        
        gradientMaskLayer.frame = CGRect(x: 0, y: 0, width: 347, height: 256)
        
        gradientMaskLayer.colors = [UIColor.black.cgColor, UIColor.clear.cgColor]
        
        gradientMaskLayer.startPoint = CGPoint(x: 0.5, y: 0)
        gradientMaskLayer.endPoint = CGPoint(x: 1, y: 1)
        
        gradientMaskLayer.locations = [0 , 0.6]
        blurEffectView.layer.mask = gradientMaskLayer
        
        return blurEffectView
    }
    func updateUIView(_ uiView: UIVisualEffectView, context: Context) {
        uiView.effect = UIBlurEffect(style: style)
    }
}

我唯一不明白的是为什么 startPoint 和 endPoint 仅在我将它们设置为 [0.5,0] 和 [1,1] 而不是 [0.5,0] 和 [0.5,1] 时才起作用 - 我希望它应该确定径向渐变的方向,在我的情况下,它应该从 .topCenter 到 .topBottom (确实如此,但我不了解 endPoint 的性质)..

于 2021-01-06T14:41:38.183 回答