iOS SDK:UITextField 自定义底部边框
我需要使用文本字段-文本视图-文本字段-键盘布局创建一个视图。我想让它们全部被边框分开,就像这样 tumblr 视图。
关于如何实现这一目标有什么想法吗?
I need to make a view with a textfield-textview-textfield-keyboard layout. I'd like to have them all divided by a border like this tumblr view.
Any ideas on how to accomplish this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您需要访问
UIView
的layer
属性。导入
QuartzCore.h
头文件。使用下面的代码设置边框及其宽度。
You need to access the
layer
property ofUIView
.Import the
QuartzCore.h
header file.Use the below code to set the border and its width.
您可以使用 third20 来完成此操作
You can use three20 to accomplish this