如何为textfield-ios设置两种不同的边框描边颜色

时间:2013-03-12 15:57:27

标签: ios uitextfield stroke

在我们的应用程序中,我们希望在文本字段周围有2种不同的边框颜色(例如:1种颜色的顶部和左侧边缘,另一种颜色的底部和右侧边缘) -这可能吗?任何帮助将不胜感激。

1 个答案:

答案 0 :(得分:1)

没有预先建立的方式来为每个边框添加不同的颜色,但是你可以用图层伪装它。可能比它的价值更多的工作,但基本上你想要做的是为每个边界绘制单独的calayer,然后将它们添加到文本字段。

#import <QuartzCore/QuartzCore.h> //This goes up top, but you already know that :-)

CALayer *topBorder = [CALayer layer];
topBorder.frame = // cgrect of where you want the bottom border. Use the textfields frame as reference, but treat the border as a solid rectangle
topBorder.backgroundColor = [UIColor greenColor].CGColor; // the .CGColor is important, don't forget it

[toScrollView.layer addSublayer:topBorder];

然后冲洗并重复每一面。您甚至可以正常设置主色,然后只添加不同的边(工作量较少)