
正文
【代码笔记】iOS-圆角矩形
提示:扫一扫查出行【扫一扫了解最新限行尾号】
复制提示
代码:

- (void)viewDidLoad
{
[super viewDidLoad];
// Do any additional setup after loading the view. self.title=@"圆角矩形"; UIImageView *imageView=[[UIImageView alloc]initWithFrame:CGRectMake(50, 100, 100, 100)];
imageView.backgroundColor=[UIColor redColor];
//设计其圆角半径
[imageView.layer setCornerRadius:18.0f];
[imageView.layer setMasksToBounds:YES];
[self.view addSubview:imageView];
}








