textview中的按钮

时间:2018-02-22 09:33:57

标签: ios swift xcode button textview

经过长时间的网络搜索,我仍然在努力解决这个问题。

我正在为swift开发iOS应用程序,我需要在textview(而不是textfield)中放置一个按钮。 该按钮应始终位于textview的右下角,并且当用户键入文本时,textview展开时不必移动。 当然,文字不应该超过按钮。

我为此找到了几个解决方案,但与文本字段有关。 同样的方法似乎对我没有用。

有人可以帮忙吗?

1 个答案:

答案 0 :(得分:1)

为什么不拥有自己的容器来容纳这两个组件。

Main View
 - > TextView     
 - > Button

添加所需的约束。有点像:

**button**: height constraint; bottom constraint to container.
**TextView** top + bottom constraint to container
**Main View** height constraint (and adjust it based on button action and text)