在我的应用程序中,有四个按钮命名如下:
按钮上方有一个图像视图(或 UIView)。
现在,假设用户点击左上角的按钮。上面的图片/视图应该在特定的角落进行圆角处理。
我有一些困难,在应用圆角 UIView。
现在我使用以下代码将圆角应用到每个视图:
// imgVUserImg is a image view on IB.
imgVUserImg.image=[UIImage imageWithData:[NSData dataWithContentsOfURL:[NSURL URLWithString:@"any Url Here"];
CALayer *l = [imgVUserImg layer];
[l setMasksToBounds:YES];
[l setCornerRadius:5.0];
[l setBorderWidth:2.0];
[l setBorderColor:[[UIColor darkGrayColor] CGColor]];
上面的代码将圆度应用到提供的视图的每个角上。相反,我只是想应用圆度到选定的角落,如-top/top + left/bottom + right 等。
有可能吗,怎么可能?