成人午夜视频全免费观看高清-秋霞福利视频一区二区三区-国产精品久久久久电影小说-亚洲不卡区三一区三区一区

iOS開發(fā)之如何給View添加指定位置的邊框線詳解

前言

創(chuàng)新互聯(lián)專注為客戶提供全方位的互聯(lián)網(wǎng)綜合服務(wù),包含不限于網(wǎng)站設(shè)計制作、成都網(wǎng)站制作、盱眙網(wǎng)絡(luò)推廣、重慶小程序開發(fā)、盱眙網(wǎng)絡(luò)營銷、盱眙企業(yè)策劃、盱眙品牌公關(guān)、搜索引擎seo、人物專訪、企業(yè)宣傳片、企業(yè)代運(yùn)營等,從售前售中售后,我們都將竭誠為您服務(wù),您的肯定,是我們最大的嘉獎;創(chuàng)新互聯(lián)為所有大學(xué)生創(chuàng)業(yè)者提供盱眙建站搭建服務(wù),24小時服務(wù)熱線:13518219792,官方網(wǎng)址:jinyejixie.com

本文主要給大家介紹了關(guān)于iOS如何給View添加指定位置邊框線的相關(guān)內(nèi)容,分享出來供大家參考學(xué)習(xí),下面話不多說了,來一起看看詳細(xì)的介紹吧。

略微封裝了一下,給View添加指定位置的邊框線,其中位移枚舉的使用詢問了哥們兒,總算搞定;

示例代碼

封裝一:直接封裝成了一個方法

/// 邊框類型(位移枚舉) 
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:UIBorderSideTypeTop | UIBorderSideTypeBottom]; 

效果:

iOS開發(fā)之如何給View添加指定位置的邊框線詳解

不足之處,邊框線過寬的話,交界處會有留白;

ps:注意:需要先把你的view加載在父view上,[self.view addSubview:testView]; 之后再設(shè)置邊框;否則可能會不起作用的;

總結(jié)

以上就是這篇文章的全部內(nèi)容了,希望本文的內(nèi)容對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價值,如果有疑問大家可以留言交流,謝謝大家對創(chuàng)新互聯(lián)的支持。

文章題目:iOS開發(fā)之如何給View添加指定位置的邊框線詳解
當(dāng)前網(wǎng)址:http://jinyejixie.com/article10/gggcdo.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供、營銷型網(wǎng)站建設(shè)服務(wù)器托管、手機(jī)網(wǎng)站建設(shè)、網(wǎng)站導(dǎo)航、網(wǎng)站維護(hù)

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)

小程序開發(fā)
浦北县| 马公市| 和林格尔县| 额尔古纳市| 志丹县| 焉耆| 都江堰市| 赤城县| 台北县| 沙洋县| 丰顺县| 南开区| 襄垣县| 宁南县| 无极县| 莱州市| 平昌县| 远安县| 北川| 中方县| 奎屯市| 枞阳县| 阿合奇县| 灵宝市| 米脂县| 莱西市| 丽江市| 临漳县| 五台县| 故城县| 香港| 甘孜县| 梅州市| 浮山县| 保亭| 陇川县| 株洲县| 友谊县| 综艺| 西畴县| 卢湾区|