iOS开发之如何给View添加指定位置的边框线详解

 更新时间:2017年10月13日 10:04:36   作者:开发仔XG  
这篇文章主要给大家介绍了iOS开发之如何给View添加指定位置的边框线的相关资料,给view加边框很容易,重点是如何给指定边框加边框,文中通过示例代码介绍的非常详细,需要的朋友可以参考借鉴,下面来一起看看吧。

前言

本文主要给大家介绍了关于iOS如何给View添加指定位置边框线的相关内容,分享出来供大家参考学习,下面话不多说了,来一起看看详细的介绍吧。

略微封装了一下,给View添加指定位置的边框线,其中位移枚举的使用询问了哥们儿,总算搞定;

示例代码

封装一:直接封装成了一个方法

/// 边框类型(位移枚举) 
typedef NS_ENUM(NSInteger, UIBorderSideType) { 
 UIBorderSideTypeAll = 0, 
 UIBorderSideTypeTop = 1 << 0, 
 UIBorderSideTypeBottom = 1 << 1, 
 UIBorderSideTypeLeft = 1 << 2, 
 UIBorderSideTypeRight = 1 << 3, 
}; 
 
/** 
 设置view指定位置的边框 
 
 @param originalView 原view 
 @param color   边框颜色 
 @param borderWidth 边框宽度 
 @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]; 
  
 /// 左侧 
 if (borderType & UIBorderSideTypeLeft) { 
  /// 左侧线路径 
  [bezierPath moveToPoint:CGPointMake(0.0f, originalView.frame.size.height)]; 
  [bezierPath addLineToPoint:CGPointMake(0.0f, 0.0f)]; 
 } 
  
 /// 右侧 
 if (borderType & UIBorderSideTypeRight) { 
  /// 右侧线路径 
  [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内容

#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内容

#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; 
 } 
  
  
 /// 左侧 
 if (borderType & UIBorderSideTypeLeft) { 
  /// 左侧线路径 
  [self.layer addSublayer:[self addLineOriginPoint:CGPointMake(0.f, 0.f) toPoint:CGPointMake(0.0f, self.frame.size.height) color:color borderWidth:borderWidth]]; 
 } 
  
 /// 右侧 
 if (borderType & UIBorderSideTypeRight) { 
  /// 右侧线路径 
  [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:UIBorderSideTypeTop | UIBorderSideTypeBottom]; 

效果:

不足之处,边框线过宽的话,交界处会有留白;

ps:注意:需要先把你的view加载在父view上,[self.view addSubview:testView]; 之后再设置边框;否则可能会不起作用的;

总结

以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,如果有疑问大家可以留言交流,谢谢大家对脚本之家的支持。

相关文章

  • iOS开发存储应用程序Info.plist知识全面详解

    iOS开发存储应用程序Info.plist知识全面详解

    这篇文章主要为大家介绍了iOS开发存储应用程序Info.plist知识全面详解,有需要的朋友可以借鉴参考下,希望能够有所帮助,祝大家多多进步,早日升职加薪
    2023-06-06
  • iOS实现支付宝蚂蚁森林随机按钮及抖动效果

    iOS实现支付宝蚂蚁森林随机按钮及抖动效果

    这篇文章主要为大家详细介绍了iOS实现支付宝蚂蚁森林随机按钮及抖动效果,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2019-02-02
  • iOS利用NSAttributeString实现不同颜色大小显示的方法

    iOS利用NSAttributeString实现不同颜色大小显示的方法

    这篇文章主要给大家爱介绍了关于iOS利用NSAttributeString实现不同颜色大小显示的相关资料,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧
    2018-06-06
  • IOS 键盘挡住输入框的问题解决办法

    IOS 键盘挡住输入框的问题解决办法

    这篇文章主要介绍了IOS 键盘挡住输入框的问题解决办法的相关资料,需要的朋友可以参考下
    2017-06-06
  • iOS实现圆环比例图

    iOS实现圆环比例图

    这篇文章主要为大家详细介绍了iOS实现圆环比例图,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2020-11-11
  • 详解Objective C 中Block如何捕获外部值

    详解Objective C 中Block如何捕获外部值

    这篇文章主要为大家介绍了详解Objective C 中Block如何捕获外部值实现示例,有需要的朋友可以借鉴参考下,希望能够有所帮助,祝大家多多进步,早日升职加薪
    2022-09-09
  • iOS中WKWebView白屏问题的分析与解决

    iOS中WKWebView白屏问题的分析与解决

    最近在工作中遇到了WKWebView白屏的问题,所以这篇文章主要给大家介绍了关于iOS中WKWebView白屏问题的分析与解决方法,文中通过示例代码介绍的非常详细,对同样遇到这个问题的朋友具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧。
    2017-10-10
  • iOS 多选删除功能附tableViewTips及单选删除

    iOS 多选删除功能附tableViewTips及单选删除

    这次分享并记录一下tableView的多选删除,并额外记录一下单选删除及tableView的设置小技巧。代码简单易懂,需要的朋友参考下吧
    2017-05-05
  • iOS的音频文件的格式转换示例

    iOS的音频文件的格式转换示例

    这篇文章主要介绍了iOS的音频文件的格式转换示例,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧
    2018-09-09
  • iOS实现APP程序内部打开APP的AppStore页面

    iOS实现APP程序内部打开APP的AppStore页面

    这篇文章主要给大家介绍了关于iOS实现APP程序内部打开APP的AppStore页面的相关资料,文中介绍的非常详细,对大家具有一定的参考学习价值,需要的朋友们下面跟着小编一起来看看吧。
    2017-06-06

最新评论