iOS SDK:UITextField 自定义底部边框

发布于 2024-11-15 08:24:25 字数 188 浏览 0 评论 0原文

我需要使用文本字段-文本视图-文本字段-键盘布局创建一个视图。我想让它们全部被边框分开,就像这样 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 技术交流群。

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

发布评论

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

评论(3

半衬遮猫 2024-11-22 08:24:26

您需要访问 UIViewlayer 属性。

导入QuartzCore.h头文件。

#import <QuartzCore/QuartzCore.h>

使用下面的代码设置边框及其宽度。

myView.layer.borderColor = [UIColor grayColor].CGColor;
myView.layer.borderWidth = 3.0f;

You need to access the layer property of UIView .

Import the QuartzCore.h header file.

#import <QuartzCore/QuartzCore.h>

Use the below code to set the border and its width.

myView.layer.borderColor = [UIColor grayColor].CGColor;
myView.layer.borderWidth = 3.0f;
森林迷了鹿 2024-11-22 08:24:26
#import <QuartzCore/QuartzCore.h>

textView.layer.borderWidth = 3.0f;
textView.layer.borderColor = [[UIColor grayColor] CGColor];
#import <QuartzCore/QuartzCore.h>

textView.layer.borderWidth = 3.0f;
textView.layer.borderColor = [[UIColor grayColor] CGColor];
香草可樂 2024-11-22 08:24:26

您可以使用 third20 来完成此操作

You can use three20 to accomplish this

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