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 ...
随机推荐
- 警惕!高版本VS发布时预编译导致Mono中Razor找不到视图
早前一段时间,一位朋友在Q群里面找到我,说它按照<Linux.NET学习手记>的操作,把一个ASP.NET MVC 4.0的项目部署到Mono之后出现Razor无法找到视图的现象.当时费了 ...
- Topshelf 支持Mono 扩展Topshelf.Linux
使用Topshelf 5步创建Windows 服务 这篇文章大家可以了解到使用Topshelf可以很好的支持Windows服务的开发,但是它和Mono不兼容,Github上有一个扩展https://g ...
- Linux 中我该如何备份系统
系统备份概述 在前面的一些文章中,我反复提到经常会把系统搞崩溃,所以备份系统就是一件不容忽视的事情.由于 Linux 系统本身的优越性,系统的备份和还原还是比较容易的.主要表现在以下方面: Linux ...
- 【Java并发编程实战】-----“J.U.C”:Exchanger
前面介绍了三个同步辅助类:CyclicBarrier.Barrier.Phaser,这篇博客介绍最后一个:Exchanger.JDK API是这样介绍的:可以在对中对元素进行配对和交换的线程的同步点. ...
- 龙之谷手游WebVR技术分享
主要面向Web前端工程师,需要一定Javascript及three.js基础:本文主要分享内容为基于three.js开发WebVR思路及碰到的问题:有兴趣的同学,欢迎跟帖讨论. 目录:一.项目体验1. ...
- 【Win 10应用开发】提供建议列表的输入控件(AutoSuggestBox)
AutoSuggestBox控件与TextBox控件相似,但,AutoSuggestBox控件可以提供一个下拉列表,用户可以从弹出的下拉列表中选择一个项,并把被选项的内容显示在输入框上.就类似于搜索引 ...
- 纪录我的iOS学习之路
学习资料的网址 田伟宇(Casa Taloyum)有几篇介绍iOS架构的文章,一级棒!原博客链接. iOS应用架构谈 开篇 iOS应用架构谈 view层的组织和调用方案 iOS应用架构谈 网络层设计方 ...
- Android浮层点击穿透问题
最近做微信公众号开发的时候遇到一个问题,上线后发现此问题后检查代码没有发现问题,无奈只能回滚到上一个版本. 问题是这样的:页面一个选择的浮层,在浮层点击确定后,下面的页面会自动提交 在测试环境上无法重 ...
- Python标准模块--concurrent.futures
1 模块简介 concurrent.futures模块是在Python3.2中添加的.根据Python的官方文档,concurrent.futures模块提供给开发者一个执行异步调用的高级接口.con ...
- Linux文件系统的实现
作者:Vamei 出处:http://www.cnblogs.com/vamei 欢迎转载,也请保留这段声明.谢谢! Linux文件管理从用户的层面介绍了Linux管理文件的方式.Linux有一个树状 ...