cornerRadius with border: Glitch around border
我的应用程序主要是基于圆形和边框的。
我使用
但我面临一个问题,角落不清晰。
我得到以下结果:
UI按钮
UIImageView
您可以观察到白色或灰色边框周围的细边框线。
这是我的代码:
1
2 3 4 5 |
button.layer.borderWidth = 2.0; button.layer.borderColor = [[UIColor whiteColor] CGColor]; button.layer.cornerRadius = 4; button.clipsToBounds = YES; |
我已经想办法解决这个问题,但没有成功。
我试过
我错过了什么吗?或者与
我尝试了很多解决方案,最后使用
我创建了
这是该类别的方法:
1
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 |
– (void)giveBorderWithCornerRadious:(CGFloat)radius borderColor:(UIColor *)borderColor andBorderWidth:(CGFloat)borderWidth { CGRect rect = self.bounds; //Make round // Create the path for to make circle UIBezierPath *maskPath = [UIBezierPath bezierPathWithRoundedRect:rect byRoundingCorners:UIRectCornerAllCorners cornerRadii:CGSizeMake(radius, radius)]; // Create the shape layer and set its path maskLayer.frame = rect; // Create the shape layer and set its path |
我从这篇精彩的文章中了解到使用
我从这两个链接中获得了大部分代码:
- UIView 类别仅用于舍入您想要的角,而不是像 CALayercornerRadius 一样。
- 如何在 UIBezierPath 上获得边框
注意:这是类别方法,因此它自己表示调用该方法的视图。像 UIButton、UIImageView 等。
这是@CRDave 的 Swift 5 版本作为 UIView 的扩展:
1
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 |
protocol CornerRadius { func makeBorderWithCornerRadius(radius: CGFloat, borderColor: UIColor, borderWidth: CGFloat) } extension UIView: CornerRadius { func makeBorderWithCornerRadius(radius: CGFloat, borderColor: UIColor, borderWidth: CGFloat) { let maskPath = UIBezierPath(roundedRect: rect, // Create the shape layer and set its path // Set the newly created shape layer as the mask for the view’s layer // Create path for border // Create the shape layer and set its path borderLayer.frame = rect //Add this layer to give border. } |
这是 Kamil Nomtek.com 更新到 Swift 3 的答案,并进行了一些改进(主要是语义/命名和使用类协议)。
1
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 |
protocol RoundedBorderProtocol: class { func makeBorder(with radius: CGFloat, borderWidth: CGFloat, borderColor: UIColor) } extension UIView: RoundedBorderProtocol { // Create the shape layer and set its path // Set the newly created shape layer as the mask for the view’s layer //Create path for border // Create the shape layer and set its path borderLayer.frame = bounds //The border is in the center of the path, so only the inside is visible. //Add this layer to display the border |
CRDave 的答案很有效,但有一个缺陷:当多次调用时,如大小更改,它会不断添加层。相反,应该更新以前的图层。
有关更新的 ObjC 版本,请参见下文。为了迅速,请相应地适应。
1
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 |
// UIView+Border.h #import <UIKit/UIKit.h> @interface UIView (Border) // UIView+Border.m @implementation UIView (Border) //Make round // Create the shape layer and set its path maskLayer.frame = rect; // Set the newly created shape layer as the mask for the view’s layer //Give Border // Create the shape layer and set its path borderLayer.frame = rect; |
de.// 的回答对我来说比 CRDave// 的回答好得多。
我必须从 Swift 翻译它,所以我想我会继续发布翻译:
1
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 |
extension UIView { func giveBorderWithCornerRadius(cornerRadius r: CGFloat, borderColor c: UIColor, strokeWidth w: CGFloat) { let rect = self.bounds let maskPath = UIBezierPath(roundedRect: rect, byRoundingCorners: .allCorners, cornerRadii: CGSize(width: r, height: r)) let maskLayer = CAShapeLayer() maskLayer.frame = rect self.layer.mask = maskLayer let borderPath = UIBezierPath(roundedRect: rect, byRoundingCorners: .allCorners, cornerRadii: CGSize(width: r, height: r)) let layerName ="border_layer" if borderLayer == nil { borderLayer!.frame = rect |
我正在调用
的方法
删除
1
2 |
button.layer.borderWidth = 0.3;
button.layer.borderColor = [[UIColor blueMain] CGColor]; |
原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/268589.html