iOS 自定义方法 - UIView扩展
//
#import <UIKit/UIKit.h>
@interface UIView (LPCView)
/** 上 */
@property CGFloat top;
/** 下 */
@property CGFloat bottom;
/** 左 */
@property CGFloat left;
/** 右 */
@property CGFloat right;
/** 中心x */
@property CGFloat centerX;
/** 中心y */
@property CGFloat centerY;
/** 高 */
@property CGFloat height;
/** 宽 */
@property CGFloat width;
/** 角标数 */
@property NSInteger brigeNum;
/** 尺寸 */
@property CGSize size;
/** 坐标 */
@property (nonatomic, assign) CGPoint origin;
/** 偏移x */
@property (nonatomic, assign) CGFloat tx;
/** 偏移y */
@property (nonatomic, assign) CGFloat ty;
/** 是否圆角-高的十分之一 */
@property BOOL isCornerRadiusHeight10;
/** 是否切圆-高的一半 */
@property BOOL isCornerRadiusHalfWidth;
/** 边框颜色 */
@property (nonatomic, strong) UIColor * borderColor;
/** 虚线边框 */
- (void)LPCDashedLine:(UIColor *)lineColor lineWidth:(CGFloat)lineWidth spaceAry:(NSArray<NSNumber *> *)spaceAry;
/** 实线边框 */
- (void)LPCSolidLine:(UIColor *)lineColor lineWidth:(CGFloat)lineWidth;
/** 点击事件-目标-事件 */
- (void)addTarget:(id)target action:(SEL)action;
/** 当前View的视图控制器 */
- (nullable UIViewController *)viewController;
NS_ASSUME_NONNULL_BEGIN
//__nullable表示对象可以是NULL或nil,而__nonnull表示对象不应该为空
/** 避免出现警告 */
NS_ASSUME_NONNULL_END
@end
////////////////////////////m//////////////////////////
//
#import "UIView+LPCView.h"
@implementation UIView (LPCView)
- (CGFloat)top {
return self.frame.origin.y;
}
- (void)setTop:(CGFloat)top {
CGRect frame = self.frame;
frame.origin.y = top;
self.frame = frame;
}
- (CGFloat)bottom {
return self.top + self.height;
}
- (void)setBottom:(CGFloat)bottom {
self.top = bottom - self.height;
}
- (CGFloat)left {
return self.frame.origin.x;
}
- (void)setLeft:(CGFloat)left {
CGRect frame = self.frame;
frame.origin.x = left;
self.frame = frame;
}
- (CGFloat)right {
return self.left + self.width;
}
- (void)setRight:(CGFloat)right {
self.left = right - self.width;
}
- (CGFloat)centerX {
return self.center.x;
}
- (void)setCenterX:(CGFloat)centerX {
self.center = CGPointMake(centerX, self.centerY);
}
- (CGFloat)centerY {
return self.center.y;
}
- (void)setCenterY:(CGFloat)centerY {
self.center = CGPointMake(self.centerX, centerY);
}
- (CGFloat)height {
return self.frame.size.height;
}
- (void)setHeight:(CGFloat)height {
CGRect frame = self.frame;
frame.size.height = height;
self.frame = frame;
}
- (CGFloat)width {
return self.frame.size.width;
}
- (void)setWidth:(CGFloat)width {
CGRect frame = self.frame;
frame.size.width = width;
self.frame = frame;
}
- (CGSize)size {
return self.frame.size;
}
- (void)setSize:(CGSize)size {
CGRect frame = self.frame;
frame.size = size;
self.frame = frame;
}
- (CGPoint)origin {
return self.frame.origin;
}
- (void)setOrigin:(CGPoint)origin {
self.frame = CGRectMake(origin.x, origin.y, self.width, self.height);
}
- (CGFloat)tx {
return self.transform.tx;
}
- (void)setTx:(CGFloat)tx {
CGAffineTransform transform = self.transform;
transform.tx = tx;
self.transform = transform;
}
- (CGFloat)ty {
return self.transform.ty;
}
- (void)setTy:(CGFloat)ty {
CGAffineTransform transform = self.transform;
transform.ty = ty;
self.transform = transform;
}
- (nullable UIViewController *)viewController {
UIResponder *responder = self;
while ((responder = [responder nextResponder]))
if ([responder isKindOfClass: [UIViewController class]]) {
return (UIViewController *)responder;
}
return nil;
}
//角标
- (NSInteger)brigeNum {
if ([[self viewWithTag:48511] isKindOfClass:[UILabel class]]) {
UILabel * tempLabel = [self viewWithTag:48511];
return [tempLabel.text integerValue];
}
return 0;
}
//角标
- (void)setBrigeNum:(NSInteger)brigeNum {
NSInteger length = [NSString stringWithFormat:@"%ld", (long)brigeNum].length;
brigeNum = brigeNum > 99 ? 99 : brigeNum;
if (0 == length && 0 == brigeNum) {
return;
}
CGRect tempFrame = CGRectMake(self.left + self.width - 6,self.top, 12, 12);
if ([[self.superview viewWithTag:48511] isKindOfClass:[UILabel class]]) {
UILabel * tempLabel = [self.superview viewWithTag:48511];
tempLabel.frame = tempFrame;
tempLabel.text = [NSString stringWithFormat:@"%ld", (long)brigeNum];
if (0 == brigeNum) {
tempLabel.alpha = 0;
}else {
tempLabel.alpha = 1;
}
}else {
UILabel * la = [[UILabel alloc] initWithFrame:tempFrame];
la.text = [NSString stringWithFormat:@"%ld", (long)brigeNum];
la.font = [UIFont systemFontOfSize:9];
la.textAlignment = NSTextAlignmentCenter;
la.textColor = [UIColor whiteColor];
la.layer.cornerRadius = 6;
la.layer.masksToBounds = YES;
la.tag = 48511;
la.backgroundColor = [UIColor redColor];
if (length > 2) {
la.frame = CGRectMake(tempFrame.size.width - 6, tempFrame.origin.y, 12, 12);
}
[self.superview addSubview:la];
if (0 == brigeNum) {
la.alpha = 0;
}else {
la.alpha = 1;
}
}
}
//边框颜色
- (UIColor *)borderColor {
return [UIColor colorWithCGColor:self.layer.borderColor];
}
- (void)setBorderColor:(UIColor *)borderColor {
self.layer.borderColor = [borderColor CGColor];
}
//圆角度
- (BOOL)isCornerRadiusHeight10 {
if (self.height / 10.0 == self.layer.cornerRadius) {
return YES;
}
return NO;
}
- (void)setIsCornerRadiusHeight10:(BOOL)isCornerRadiusHeight10 {
if (isCornerRadiusHeight10) {
self.layer.cornerRadius = self.height * kScale_Height / 10.0;
self.layer.masksToBounds = YES;
}else {
isCornerRadiusHeight10 = NO;
}
}
//切圆
- (BOOL)isCornerRadiusHalfWidth {
if (self.layer.cornerRadius == self.height / 2.0) {
return YES;
}
return NO;
}
- (void)setIsCornerRadiusHalfWidth:(BOOL)isCornerRadiusHalfWidth {
if (isCornerRadiusHalfWidth) {
self.layer.cornerRadius = self.height / 2.0;
self.layer.masksToBounds = YES;
}else {
isCornerRadiusHalfWidth = NO;
}
}
//虚线边框
- (void)LPCDashedLine:(UIColor *)lineColor lineWidth:(CGFloat)lineWidth spaceAry:(NSArray<NSNumber *> *)spaceAry {
CAShapeLayer *borderLayer = [CAShapeLayer layer];
borderLayer.bounds = CGRectMake(0, 0, self.width , self.height);
borderLayer.position = CGPointMake(CGRectGetMidX(self.bounds), CGRectGetMidY(self.bounds));
//不带圆角
// borderLayer.path = [UIBezierPath bezierPathWithRect:borderLayer.bounds].CGPath;
//带圆角
borderLayer.path = [UIBezierPath bezierPathWithRoundedRect:borderLayer.bounds cornerRadius:self.layer.cornerRadius].CGPath;
borderLayer.lineWidth = lineWidth / [[UIScreen mainScreen] scale];
//虚线边框
borderLayer.lineDashPattern = spaceAry;
borderLayer.fillColor = [UIColor clearColor].CGColor;
borderLayer.strokeColor = lineColor.CGColor;
[self.layer addSublayer:borderLayer];
}
//实线变框
- (void)LPCSolidLine:(UIColor *)lineColor lineWidth:(CGFloat)lineWidth {
CAShapeLayer *borderLayer = [CAShapeLayer layer];
borderLayer.bounds = CGRectMake(0, 0, self.width , self.height);
borderLayer.position = CGPointMake(CGRectGetMidX(self.bounds), CGRectGetMidY(self.bounds));
//不带圆角
// borderLayer.path = [UIBezierPath bezierPathWithRect:borderLayer.bounds].CGPath;
//带圆角
borderLayer.path = [UIBezierPath bezierPathWithRoundedRect:borderLayer.bounds cornerRadius:self.layer.cornerRadius].CGPath;
borderLayer.lineWidth = lineWidth / [[UIScreen mainScreen] scale];
//实线边框
borderLayer.lineDashPattern = nil;
borderLayer.fillColor = [UIColor clearColor].CGColor;
borderLayer.strokeColor = lineColor.CGColor;
[self.layer addSublayer:borderLayer];
}
/** 点击事件-目标-事件 */
- (void)addTarget:(id)target action:(SEL)action {
UITapGestureRecognizer *tap = [[UITapGestureRecognizer alloc]initWithTarget:target action:action];
self.userInteractionEnabled = YES;
[self addGestureRecognizer:tap];
}
@end
iOS 自定义方法 - UIView扩展的更多相关文章
- iOS开发-UIView扩展CGRect
关于UIView的位置都会遇到,一般需要改变UIView的位置,需要先获取原有的frame位置,然后在frame上面修改,有的时候如果只是改变了一下垂直方向的位置,宽度和高度的一种,这种写法很麻烦.下 ...
- 开发腾讯移动游戏平台SDK ios版Ane扩展 总结
本文记录了在开发 腾讯移动游戏平台SDK(MSDK) ios版Ane扩展 过程中所遇到的问题 文中非常多问题都是基础的问题.对object c和xcode配置了解不深入导致的.(没办法,开发ane的程 ...
- iOS 通知中心扩展制作初步-b
涉及的 Session 有 Creating Extensions for iOS and OS X, Part 1 Creating Extensions for iOS and OS X, Par ...
- IOS中类的扩展(协议,分类)
IOS中类的扩展(协议,分类) 扩展类,我们可以使用协议和分类这两种方法,下面我们来分别实现这两种方法: 参考网址:http://www.cnblogs.com/wendingding/p/37095 ...
- iOS学习系列 - 扩展机制category与associative
iOS学习系列 - 扩展机制category与associative category与associative作为objective-c的扩展机制的两个特性,category即类型,可以通过它来扩展方 ...
- 荼菜的iOS笔记--UIView的几个Block动画
前言:我的第一篇文章荼菜的iOS笔记–Core Animation 核心动画算是比较详细讲了核心动画的用法,但是如你上篇看到的,有时我们只是想实现一些很小的动画,这时再用coreAnimation就会 ...
- iOS学习——UIView的研究
在iOS开发中,我们知道有一个共同的基类——NSObject,但是对于界面视图而言,UIView是非常重要的一个类,UIView是很多视图控件的基类,因此,对于UIView的学习闲的非常有必要.在iO ...
- ios 关于UIView 的multipleTouchEnabled 和 exclusiveTouch
做项目时发现,在一个界面上的2个button竟然可以同时点击,依次push进去了2个 controller!我就产生了疑问,一个view的multipleTouchEnabled属性默认是false啊 ...
- iOS 使用UIView的一种有效方法
在一个典型的MVC结构 中,Model部分负责保存目标数据,View部分主要负责实现数据的界面以及将数据显示出来,二者在Controller的操作下协同工作.在iOS应用中,View的实现主要由UIV ...
随机推荐
- 从零开始,DIY一个jQuery(1)
从本篇开始会陪大家一起从零开始走一遍 jQuery 的奇妙旅途,在整个系列的实践中,我们会把 jQuery 的主要功能模块都了解和实现一遍. 这会是一段很长的历程,但也会很有意思 —— 作为前端领域的 ...
- JavaScript的妙与乐(一)之 函数优化
JavaScript的妙与乐系列文章主要是展示一些JavaScript上面比较好玩一点的特性和一些有用的技巧,里面很多内容都是我曾经在项目中使用过的一些内容(当然,未必所有技巧的使用频率都很高^_^) ...
- CSharpGL(14)用geometry shader渲染模型的法线(normal)
+BIT祝威+悄悄在此留下版了个权的信息说: CSharpGL(14)用geometry shader渲染模型的法线(normal) +BIT祝威+悄悄在此留下版了个权的信息说: 2016-08-13 ...
- Android-启动另一个app
直接上代码: // 通过包名获取要跳转的app,创建intent对象 Intent intent = getPackageManager().getLaunchIntentForPackage(&qu ...
- iOS---基于对Sqlilte3的二次包装的第三次包装--->JKDBModel ,一个好用的离线缓存库
https://github.com/Joker-King/JKDBModel 1.将FMDB和DBModel拖入项目中,然后添加libsqlite3.dylib 2. #import " ...
- ASP.NET MVC5+EF6+EasyUI 后台管理系统(22)-权限管理系统-模块导航制作
系列目录 最近比较忙,系统难度独步增加,文章的发布速度明显比以前慢了. 由于我们已经跑通了整个系统,所有东西都回到了简单,接下来我们做模块制作也就是操作SysModule表. 首先我们来回顾一下之前的 ...
- ASP.NET MVC5+EF6+EasyUI 后台管理系统-分配角色给用户
系列目录 由于之前做了将权限赋给角色,还需要做将角色组赋给用户,和将用户赋给角色组,一个用户可以拥有多个角色组,一个角色组包含多个用户,打开模块管理,添加一个分配的操作码 并在 角色权限设置授权给他 ...
- 通过IEnumerable和IDisposable实现可暂停和取消的任务队列
一般来说,软件中总会有一些长时间的操作,这类操作包括下载文件,转储数据库,或者处理复杂的运算. 一种处理做法是,在主界面上提示正在操作中,有进度条,其他部分不可用.这里带来很大的问题, 使用者不知道到 ...
- 数据库日常维护-CheckList_02有关数据库备份检查
数据库备份是DB日常运维中最基本的也是最重要的工作,很多情况下都是做成作业形式实现自动化周期性的做全备.差异以及日志备份.那么,如果作业出现问题没有完成工作,我们可以设置自动报警如email被动提醒我 ...
- 《你不知道的JavaScript》整理(三)——对象
一.语法 两种形式定义:文字形式和构造形式. //文字形式 var myObj = { key: value }; //构造形式 var myObj = new Object(); myObj.key ...