穿过 UITextField 的线

发布于 2024-09-28 03:58:26 字数 421 浏览 1 评论 0原文

我的 UITextField 有一个奇怪的错误,有时有一条线(实际上更多的是透明条)穿过它。有谁知道如何摆脱它?

这是图片

alt text

xib 文件的链接:http://db.tt/7l2Bq42

代码链接:http: //db.tt/DW0mlqQ

编辑:该错误现已解决。我以编程方式创建此视图,而不是使用 xib 文件,并且错误似乎消失了。感谢大家的帮助

I have this weird bug with UITextField, sometimes there's a line (actually more of a transparent strip) through it. Does anyone know how to get rid of it?

Here's the picture

alt text

A link to xib file: http://db.tt/7l2Bq42

A link to the code: http://db.tt/DW0mlqQ

Edit: The bug is now solved. I'm creating this view programmatically rather than with a xib file, and the bug seems to be gone. Thanks everyone for your help.

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

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

发布评论

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

评论(2

z祗昰~ 2024-10-05 03:58:26

看来您已经使用了 UITextField 的 center 属性。如果您使用 nameInput1.center,有时会出现此类错误。

您可以使用此行而不是设置 center 属性。

nameInput1.textAlignment = UITextAlignmentCenter;

如果您仍然发现问题,请告诉我。我喜欢解决这个问题。

It seems that you have used center property of UITextField. If you use nameInput1.center, sometimes it gives this type of error.

You can use this line instead of setting center property.

nameInput1.textAlignment = UITextAlignmentCenter;

If you still finding some problem then please let me know. I love to solve this problem.

醉酒的小男人 2024-10-05 03:58:26

如果你摆脱了居中,你的问题就消失了吗?

您可以通过子类化 UITextField 并重写 drawTextInRect: 方法来完全避免使用 textAlignment。要计算矩形,请使用以下 NSString 方法:

- (CGSize)sizeWithFont:(UIFont *)font forWidth:(CGFloat)width lineBreakMode:(UILineBreakMode)lineBreakMode;

If you get rid of the centering, does your problem go away?

You can avoid using textAlignment altogether by subclassing the UITextField and overriding the drawTextInRect: method. To compute the rectangle, use this NSString method:

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