Я обертываю UITextfield, используя UIViewRepresentable в SwiftUI, но не могу установить ширину - PullRequest
3 голосов
/ 14 января 2020

Обновлено: я нашел ответ и исправил эту проблему: (FYI: SwiftUI - Изменение состояния в UITextField приводит к тому, что frameWidth становится неконтролируемым и игнорирует границы / фрейм )

func makeUIView(context: UIViewRepresentableContext<MyField>) -> UITextField {
    let field = UITextField(frame: .zero)
    field.setContentCompressionResistancePriority(.defaultLow, for: .horizontal)

Когда я буду вводить в него все больше и больше текста, текстовое поле будет становиться все шире и шире, даже если установлена ​​ширина рамки.

public struct FoolTextField: UIViewRepresentable {
    @Binding var text: String
    private let textField = UITextField(frame: .zero)

    public init(_ placeholder: String, text: Binding<String>) {
        _text = text
        textField.text = text.wrappedValue
        textField.placeholder = placeholder
        textField.borderStyle = .none
        textField.clearButtonMode = .whileEditing
        textField.returnKeyType = .done
    }
    ...
}


FoolTextField("placeholder", text: $text).frame(width: 200)
...