在Swift UI中,我可以用什么代替Text View?

时间:2019-10-12 13:29:21

标签: swift swiftui swift5 swift5.1 swift5.2

我想有一个最大字符数限制的可编辑文本字段,就像一条推文一样,但是我没有在SwiftUI中找到解决方案。有没有人找到解决这个问题的办法?

2 个答案:

答案 0 :(得分:1)

您需要的是TextField,您必须使用数据模型来限制最大字符数,如this answer中所述。

答案 1 :(得分:0)

我找到了您问题的答案。

此解决方案不使用EnvironmentObject。

请检查此页面。 How to use Combine on a SwiftUI View

这是我的示例代码。

.mat-drawer-container.my-drawer-container {
    overflow: scroll;
}

.mat-drawer-content.my-drawer-content {
    overflow: scroll;
}