iOS 自定义方法 - 不完整边框
///////////////////////////OC.h//////////////////////////
//
// UIView+FreeBorder.h
// BHBFreeBorder
//
// Created by bihongbo on 15/12/30.
// Copyright © 2015年 bihongbo. All rights reserved.
//
#import <UIKit/UIKit.h>
typedef enum : NSUInteger {
BorderTypeTop,
BorderTypeLeft,
BorderTypeRight,
BorderTypeBottom
} BorderType;
@interface UIView (FreeBorder)
/** 多边框 */
- (void)addBorderWithColor:(UIColor *)color size:(CGFloat)size borderTypes:(NSArray *)types;
/** 单边框 */
- (void)addBorderLayerWithColor:(UIColor *)color size:(CGFloat)size borderType:(BorderType)boderType;
@end
//示例
/// 下上右边框
//[lbl1 addBorderWithColor:[UIColor redColor] size:1 borderTypes:@[@(BorderTypeBottom),@(BorderTypeTop),@(BorderTypeRight)]];
/// 单根边框
//[lbl2 addBorderLayerWithColor:[UIColor greenColor] size:1 borderType:BorderTypeRight];
///////////////////////////OC.m//////////////////////////
//
// UIView+FreeBorder.m
// BHBFreeBorder
//
// Created by bihongbo on 15/12/30.
// Copyright © 2015年 bihongbo. All rights reserved.
//
#import "UIView+FreeBorder.h"
@implementation UIView (FreeBorder)
- (void)addBorderWithColor:(UIColor *)color size:(CGFloat)size borderTypes:(NSArray *)types{
for (int i = 0 ; i < types.count; i ++) {
[self addBorderLayerWithColor:color size:size borderType:[types[i] integerValue]];
}
}
- (void)addBorderLayerWithColor:(UIColor *)color size:(CGFloat)size borderType:(BorderType)boderType{
CALayer * layer = [CALayer layer];
layer.backgroundColor = color.CGColor;
[self.layer addSublayer:layer];
switch (boderType) {
case BorderTypeTop:
layer.frame = CGRectMake(0, 0, self.frame.size.width, size);
break;
case BorderTypeLeft:
layer.frame = CGRectMake(0, 0, size, self.frame.size.height);
break;
case BorderTypeBottom:
layer.frame = CGRectMake(0, self.frame.size.height - size, self.frame.size.width, size);
break;
case BorderTypeRight:
layer.frame = CGRectMake(self.frame.size.width - size, 0, size, self.frame.size.height);
break;
default:
break;
}
}
@end
///////////////////////////Swift//////////////////////////
//
// UIView+FreeBolder.swift
// daydays
//
// Created by bihongbo on 9/14/15.
// Copyright (c) 2015 daydays. All rights reserved.
//
import Foundation
import UIKit
@objc enum BorderType:NSInteger{
case top,left,bottom,right
}
extension UIView{
// MARK: - 为视图加上边框 ,枚举数组可以填充上下左右四个边
@objc func addBorder(color: UIColor?, size: CGFloat, borderTypes:NSArray){
var currentColor:UIColor?
if let _ = color{
currentColor = color
}else{
currentColor = UIColor.blackColor()
}
for borderType in borderTypes{
let bt: NSNumber = borderType as! NSNumber
self.addBorderLayer(currentColor!, size: size, boderType: BorderType(rawValue: bt.integerValue)!)
}
}
@objc func addBorderLayer(color: UIColor, size: CGFloat, boderType: BorderType){
let layer:CALayer = CALayer()
layer.backgroundColor = color.CGColor
self.layer.addSublayer(layer)
switch boderType{
case .top:
layer.frame = CGRectMake(0, 0, self.frame.width, size)
case .left:
layer.frame = CGRectMake(0, 0, size, self.frame.height)
case .bottom:
layer.frame = CGRectMake(0, self.frame.height - size, self.frame.width, size)
case .right:
layer.frame = CGRectMake(self.frame.width - size, 0, size, self.frame.height)
// default:
// return;
}
}
}
//示例
/// 下上右边框
//lbl1.addBorder(UIColor.redColor(), size: 1, borderTypes: [BorderType.bottom.rawValue,BorderType.top.rawValue,BorderType.right.rawValue])
/// 单根边框
//lbl2.addBorderLayer(UIColor.greenColor(), size: 1, boderType: BorderType.right);
iOS 自定义方法 - 不完整边框的更多相关文章
- iOS项目的完整重命名方法图文教程
原文链接:http://www.cocoachina.com/ios/20150104/10824.html iOS项目的完整重命名方法图文教程 前言:在iOS开发中,有时候想改一下项目的名字,都会遇 ...
- IOS UIView圆角,阴影,边框,渐增光泽
圆角 sampleView.layer.cornerRadius = 2.5; // 圓角的弧度sampleView.layer.masksToBounds = YES; 阴影 sampleView. ...
- iPhone 6/plus iOS Safari fieldset border 边框消失
问题:iPhone6 plus 手机浏览网页,fieldset border 边框消失. 示例代码: <div> <fieldset style="border: 1px ...
- IOS设置UIView的边框为圆角
iOS 系统自带的 View 组件都是正方形的,看起来都太生硬,有时候我需要变成圆角形式,如下图: 具体的实现是使用QuartzCore库,下面我具体的描述一下实现过程: • 首先 ...
- iOS 自定义方法 - UIView扩展
示例代码 //#import <UIKit/UIKit.h>@interface UIView (LPCView)/** 上 */@property CGFloat top;/** 下 * ...
- iOS 自定义方法 - 播放GIF
示例代码 ///////////////////////第一种/////////////////////// //// GifView.h// GIFViewer//// Created by ...
- iOS设置分割线从边框顶端开始
好方法,本来是在xib里面设置自定义分割线位置,结果还是差15像素,该方法亲测好使. IOS8 设置TableView Separatorinset 分割线从边框顶端开始 (转) 在ios8上 [Ta ...
- iOS 数据库sqlite完整增删改查操作
1: 创建数据库表格 1.1 — 表格创建使用一个数据库软件快速创建:软件大小14.3M; 下载地址:http://pan.baidu.com/s/1qWOgGoc; 表格创建-> 打开软件,点 ...
- iOS之一个iOS开发人员完整的学习路线
iOS开发能力 掌握(最好是精通)OC语言和runtime各种细节(读过相关的clang源码和runtime源码为佳).精通基本的framework(Foundation,UIKit等,平时干活用得最 ...
随机推荐
- html5标签canvas函数drawImage使用方法
html5中标签canvas,函数drawImage(): 使用drawImage()方法绘制图像.绘图环境提供了该方法的三个不同版本.参数传递三种形式: drawImage(image,x,y):在 ...
- 缓存工厂之Redis缓存
这几天没有按照计划分享技术博文,主要是去医院了,这里一想到在医院经历的种种,我真的有话要说:医院里的医务人员曾经被吹捧为美丽+和蔼+可亲的天使,在经受5天左右相互接触后不得不让感慨:遇见的有些人员在挂 ...
- C++11特性——变量部分(using类型别名、constexpr常量表达式、auto类型推断、nullptr空指针等)
#include <iostream> using namespace std; int main() { using cullptr = const unsigned long long ...
- the Zen of Python---转载版
摘自译文学习区 http://article.yeeyan.org/view/legendsland/154430 The Zen of Python Python 之禅 Beautiful is b ...
- Android开发学习——画横线竖线
画横线/竖线 竖线 <View android:layout_width="1dp" android:layout_height="match_parent&quo ...
- 【初码干货】使用阿里云对Web开发中的资源文件进行CDN加速的深入研究和实践
提示:阅读本文需提前了解的相关知识 1.阿里云(https://www.aliyun.com) 2.阿里云CDN(https://www.aliyun.com/product/cdn) 3.阿里云OS ...
- Linux.NET实战手记—自己动手改泥鳅(上)
各位读者大家好,不知各位读者有否阅读在下的前一个系列<Linux.NET 学习手记>,在前一个系列中,我们从Linux中Mono的编译安装开始,到Jexus服务器的介绍,以及如何在Linu ...
- Linux CentOS7通过yum命令安装Mono(尝先安装模式)
前言 经过尝试网上各种安装mono的技术贴,这个安装过程经历了大约2周,尝试了各个版本,几目前博客所描述的所有安装方式.以下内容的安装方式可以为你尝试不同版本的mono.并非正式环境安装标准方式安装. ...
- nginx常用代理配置
因为业务系统需求,需要对web服务作nginx代理,在不断的尝试过程中,简单总结了一下常见的nginx代理配置. 1. 最简反向代理配置 在http节点下,使用upstream配置服务地址,使用ser ...
- 死去活来,而不变质:Domain Model(领域模型) 和 EntityFramework 如何正确进行对象关系映射?
写在前面 阅读目录: 设计误区 数据库已死 枚举映射 关联映射 后记 在上一篇<一缕阳光:DDD(领域驱动设计)应对具体业务场景,如何聚焦 Domain Model(领域模型)?>博文中, ...