略微封裝了一下跟匆,給View添加指定位置的邊框線,其中位移枚舉的使用詢問了哥們兒豪墅,總算搞定纤泵;
封裝一:直接封裝成了一個(gè)方法
/// 邊框類型(位移枚舉)
typedef NS_ENUM(NSInteger, UIBorderSideType) {
UIBorderSideTypeAll = 0,
UIBorderSideTypeTop = 1 << 0,
UIBorderSideTypeBottom = 1 << 1,
UIBorderSideTypeLeft = 1 << 2,
UIBorderSideTypeRight = 1 << 3,
};
/**
設(shè)置view指定位置的邊框
@param originalView 原view
@param color 邊框顏色
@param borderWidth 邊框?qū)挾? @param borderType 邊框類型 例子: UIBorderSideTypeTop|UIBorderSideTypeBottom
@return view
*/
- (UIView *)borderForView:(UIView *)originalView color:(UIColor *)color borderWidth:(CGFloat)borderWidth borderType:(UIBorderSideType)borderType {
if (borderType == UIBorderSideTypeAll) {
originalView.layer.borderWidth = borderWidth;
originalView.layer.borderColor = color.CGColor;
return originalView;
}
/// 線的路徑
UIBezierPath * bezierPath = [UIBezierPath bezierPath];
/// 左側(cè)
if (borderType & UIBorderSideTypeLeft) {
/// 左側(cè)線路徑
[bezierPath moveToPoint:CGPointMake(0.0f, originalView.frame.size.height)];
[bezierPath addLineToPoint:CGPointMake(0.0f, 0.0f)];
}
/// 右側(cè)
if (borderType & UIBorderSideTypeRight) {
/// 右側(cè)線路徑
[bezierPath moveToPoint:CGPointMake(originalView.frame.size.width, 0.0f)];
[bezierPath addLineToPoint:CGPointMake( originalView.frame.size.width, originalView.frame.size.height)];
}
/// top
if (borderType & UIBorderSideTypeTop) {
/// top線路徑
[bezierPath moveToPoint:CGPointMake(0.0f, 0.0f)];
[bezierPath addLineToPoint:CGPointMake(originalView.frame.size.width, 0.0f)];
}
/// bottom
if (borderType & UIBorderSideTypeBottom) {
/// bottom線路徑
[bezierPath moveToPoint:CGPointMake(0.0f, originalView.frame.size.height)];
[bezierPath addLineToPoint:CGPointMake( originalView.frame.size.width, originalView.frame.size.height)];
}
CAShapeLayer * shapeLayer = [CAShapeLayer layer];
shapeLayer.strokeColor = color.CGColor;
shapeLayer.fillColor = [UIColor clearColor].CGColor;
/// 添加路徑
shapeLayer.path = bezierPath.CGPath;
/// 線寬度
shapeLayer.lineWidth = borderWidth;
[originalView.layer addSublayer:shapeLayer];
return originalView;
}
封裝二:封裝成了類別
/// .h內(nèi)容
#import <UIKit/UIKit.h>
typedef NS_OPTIONS(NSUInteger, UIBorderSideType) {
UIBorderSideTypeAll = 0,
UIBorderSideTypeTop = 1 << 0,
UIBorderSideTypeBottom = 1 << 1,
UIBorderSideTypeLeft = 1 << 2,
UIBorderSideTypeRight = 1 << 3,
};
@interface UIView (BorderLine)
- (UIView *)borderForColor:(UIColor *)color borderWidth:(CGFloat)borderWidth borderType:(UIBorderSideType)borderType;
@end
/// .m內(nèi)容
#import "UIView+BorderLine.h"
@implementation UIView (BorderLine)
- (UIView *)borderForColor:(UIColor *)color borderWidth:(CGFloat)borderWidth borderType:(UIBorderSideType)borderType {
if (borderType == UIBorderSideTypeAll) {
self.layer.borderWidth = borderWidth;
self.layer.borderColor = color.CGColor;
return self;
}
/// 左側(cè)
if (borderType & UIBorderSideTypeLeft) {
/// 左側(cè)線路徑
[self.layer addSublayer:[self addLineOriginPoint:CGPointMake(0.f, 0.f) toPoint:CGPointMake(0.0f, self.frame.size.height) color:color borderWidth:borderWidth]];
}
/// 右側(cè)
if (borderType & UIBorderSideTypeRight) {
/// 右側(cè)線路徑
[self.layer addSublayer:[self addLineOriginPoint:CGPointMake(self.frame.size.width, 0.0f) toPoint:CGPointMake( self.frame.size.width, self.frame.size.height) color:color borderWidth:borderWidth]];
}
/// top
if (borderType & UIBorderSideTypeTop) {
/// top線路徑
[self.layer addSublayer:[self addLineOriginPoint:CGPointMake(0.0f, 0.0f) toPoint:CGPointMake(self.frame.size.width, 0.0f) color:color borderWidth:borderWidth]];
}
/// bottom
if (borderType & UIBorderSideTypeBottom) {
/// bottom線路徑
[self.layer addSublayer:[self addLineOriginPoint:CGPointMake(0.0f, self.frame.size.height) toPoint:CGPointMake( self.frame.size.width, self.frame.size.height) color:color borderWidth:borderWidth]];
}
return self;
}
- (CAShapeLayer *)addLineOriginPoint:(CGPoint)p0 toPoint:(CGPoint)p1 color:(UIColor *)color borderWidth:(CGFloat)borderWidth {
/// 線的路徑
UIBezierPath * bezierPath = [UIBezierPath bezierPath];
[bezierPath moveToPoint:p0];
[bezierPath addLineToPoint:p1];
CAShapeLayer * shapeLayer = [CAShapeLayer layer];
shapeLayer.strokeColor = color.CGColor;
shapeLayer.fillColor = [UIColor clearColor].CGColor;
/// 添加路徑
shapeLayer.path = bezierPath.CGPath;
/// 線寬度
shapeLayer.lineWidth = borderWidth;
return shapeLayer;
}
@end
用法:
UIView *testView = [[UIView alloc] initWithFrame:CGRectMake(80.0f, 80.0f, 200.0f, 100.0f)];
testView.backgroundColor = [UIColor lightGrayColor];
[self.view addSubview:testView];
[self borderForView:testView color:[UIColor redColor] borderWidth:1.0f borderType:UIBorderSideTypeLeft | UIBorderSideTypeTop | UIBorderSideTypeBottom];
效果:
C1846502-36A3-4BD0-A118-D808444D09A0.png
不足之處:
邊框線過寬的話,交界處會(huì)有留白笔呀;
PS:第一次用簡書發(fā)文章幢踏,常用CSDN,我的CSDN看看相關(guān)iOS開發(fā)文章许师,都是平時(shí)我遇到的問題房蝉,解決了,記錄下來微渠,CSDN地址:http://blog.csdn.net/syg90178aw
注意搭幻,需要先把你的view加載在父view上,[self.view addSubview:testView]; 之后再設(shè)置邊框逞盆;否則可能會(huì)不起作用的檀蹋;