2

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

4

1 回答 1

1

没有预先构建的方法可以为每个边框边设置不同的颜色,但是您可以使用 layers 来伪造它。可能比它的价值更多的工作,但基本上你想要做的是为每个边框绘制单独的 calayers,然后将它们添加到文本字段。

#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];

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

于 2013-03-12T16:17:12.620 回答