穿过 UITextField 的线
我的 UITextField 有一个奇怪的错误,有时有一条线(实际上更多的是透明条)穿过它。有谁知道如何摆脱它?
这是图片
xib 文件的链接:http://db.tt/7l2Bq42
编辑:该错误现已解决。我以编程方式创建此视图,而不是使用 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
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
看来您已经使用了 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.
如果你摆脱了居中,你的问题就消失了吗?
您可以通过子类化 UITextField 并重写 drawTextInRect: 方法来完全避免使用 textAlignment。要计算矩形,请使用以下 NSString 方法:
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: