SwiftUI文本字段-如何在编辑模式下设置文本字段的背景颜色以清除

时间:2019-12-18 14:23:28

标签: swiftui textfield clear

为配合其他控件,我的文本字段使用了框架,框架的高度大于文本本身的高度。标准视图显示在带有自定义占位符的示例上方文本字段中。当我单击“文本字段”时,较小的文本区域本身具有灰色背景: enter image description here

如何将此文本背景设置为纯色?

    struct TestView: View {

    @State var city: String
    @State var street: String

    var body: some View {
        VStack{
            ZStack(alignment: .center) {
                if city.isEmpty { Text("Bitte Namen eingeben")
                    .font(.system(size: 24, weight: .heavy, design: .default))
                    .foregroundColor(Color( red: 1.0, green: 0.0, blue: 0.0, opacity: 0.3))
                }
            TextField("", text: self.$city)
                .textFieldStyle(CustomTFStyle())
            }

            ZStack(alignment: .center) {
                if street.isEmpty { Text("Bitte Strasse eingeben")
                    .font(.system(size: 24, weight: .heavy, design: .default))
                    .foregroundColor(Color( red: 1.0, green: 0.0, blue: 0.0, opacity: 0.3))
                }
            TextField("", text: self.$street)
                .textFieldStyle(CustomTFStyle())
            }
        }
    }
}
    public struct CustomTFStyle : TextFieldStyle {
    public func _body(configuration: TextField<Self._Label>) -> some View {
        configuration
            .accentColor(.black)
                .frame(width: 300, height: 70, alignment: .center)
                .border(Color.gray, width: 4)
             .font(.system(size: 30, weight: .heavy, design: .default))
            .clipShape(RoundedRectangle(cornerRadius: 12))
            .shadow(radius: 12)
            .foregroundColor(.black)

    }
}

2 个答案:

答案 0 :(得分:0)

无法重现此内容。尝试清理项目并退出/重启Xcode。

尝试将修饰符添加到您的CustomTFStyle

.background(Color.clear)

边注: 您可能还需要考虑将AttributedString分配为占位符,而不是有条件地ZStack在Text

的顶部单独放置一个TextField

为此,您需要将UITextField包裹在UIViewRepresentable中,并在makeUIView方法内进行经典工作。

答案 1 :(得分:0)

我的rootview的init方法中的

“ UIScrollView.appearance()。backgroundColor = .lightGray”也会影响Textfield的行为。删除这一行就可以了。