我在这个问题上看过很多Q,但没有一个是我想要做的。我有一个视图内部的视图,它的框架是一个CGRectangle。我想说矩形的圆角看起来像一个圆角矩形按钮。如果我可以有一些关于如何实现的代码示例,那就太好了。提前谢谢。
答案 0 :(得分:5)
首先需要将QuartzCore框架导入到项目中。我希望你知道怎么做。你可以使用以下代码:
CALayer *l = [yourView layer];
[l setMasksToBounds:YES];
[l setCornerRadius:10.0];
// You can even add a border
[l setBorderWidth:1.0];
[l setBorderColor:[[UIColor blackColor] CGColor]];
希望它有所帮助! ;)
答案 1 :(得分:2)
您需要确保导入<QuartzCore/QuartzCore.h>
并将QuartzCore
添加到现有框架,才能访问cornerRadius:
方法。
然后设置角半径,您将使用类似下面的内容,具体取决于您对视图的实现
UIView *theView = [[UIView alloc] initWithFrame:CGRectMake(10,10,100,200)];
CALayer *theViewLayer = [theView layer];
[theViewLayer setCorderRadius:5.0];
//Other Methods you can use
[theViewLayer setBorderColor:[[UIColor colorWithWhite:1.0 alpha:0.3] CGColor]];
[theViewLayer setBorderWidth:2.0];
[theViewLayer setBackgroundColor:[[UIColor blackColor] CGColor]];