作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试创建一个简单的转换器。
有没有机会我可以将 Measurement() 与 UI 绑定(bind)。
错误说,为了绑定(bind) Measurement in 必须是一个字符串。
先感谢您!
这是代码:
import SwiftUI
struct ContentView: View {
@State private var tCelsius = Measurement(value: 0, unit: UnitTemperature.celsius)
var fromCelsiusToFahrenheit: Measurement<UnitTemperature> {
tCelsius.converted(to: .fahrenheit)
}
var body: some View {
NavigationView {
Form {
TextField("Type the temperature", text: $tCelsius)
Text("\(fromCelsiusToFahrenheit)")
}
}
}
}
最佳答案
您需要创建一个自定义 Binding
转换您的Measurement
变成 String
.
您可以使用 MeasurementFormatter
改进以下代码用于 temperatureBinding
的 getter 中的转换.
struct ContentView: View {
@State private var tCelsius = Measurement(value: 0, unit: UnitTemperature.celsius)
var fromCelsiusToFahrenheit: Measurement<UnitTemperature> {
tCelsius.converted(to: .fahrenheit)
}
var body: some View {
let temperatureBinding = Binding<String>(
get: { self.tCelsius.description },
set: { temperatureString in
guard let newTemperature = Double(temperatureString) else { return }
self.tCelsius.value = newTemperature
}
)
return NavigationView {
Form {
TextField("Type the temperature", text: temperatureBinding)
Text("\(fromCelsiusToFahrenheit)")
}
}
}
}
关于swift - 如何在 SwiftUI 中将测量与 UI 绑定(bind)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62258695/
我是一名优秀的程序员,十分优秀!