如何防止UITextField显示多行?

发布于 2024-10-03 11:27:51 字数 343 浏览 1 评论 0原文

是的,你没看错 - 我的 UITextField 由于某种原因有多行,这让我发疯。

我有一个应用程序,用户可以直接在 UITableViewCell 中编辑内容。当他们点击单元格时,单元格标签中的文本将被放入 UITextField 中,然后添加到 UITableViewCell 中。一旦 UITextField 达到一定数量的字符(不确定到底是什么幻数),它就会分成多行并且看起来很糟糕 - 第一行是清晰的,但第二行被 UITextField 的底部边框剪裁。

我不想使用 UITextView,因为我更喜欢在我的情况下使用单行。以前有人见过这种行为吗?有办法预防吗?

哦,我使用 iOS 4.1 作为我的基础 SDK。

Yes, you read right - my UITextField has multiple lines for some reason and it is driving me crazy.

I have an app where users can edit content directly in a UITableViewCell. When they tap the cell, the text in the cell's label is put into a UITextField that is then added to the UITableViewCell. Once the UITextField hits a certain amount of characters (not sure exactly what the magic number is), it splits onto multiple lines and looks terrible - the first row is clear, but the second row is clipped by the bottom border of the UITextField.

I do not want to use a UITextView as I prefer the single line in my situation. Has anybody seen this behavior before? Is there a way to prevent it?

Oh, I am using iOS 4.1 as my base SDK.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

尐籹人 2024-10-10 11:27:51

找到了 - UITextField 的 ClipsToBounds 属性需要设置为 YES。如果使用 Interface Builder,则需要选中“Clip Subviews”框。

Found it - the clipsToBounds property of the UITextField needs to be set to YES. If using Interface Builder, the "Clip Subviews" box needs to be checked.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文