iOS Categories,that is all.
@(iOS)[UIImage]
[TOC]
- 这个使用很常见,特别是在上传图片时,一定要记得修正方向,不然安卓或者服务端下载下来方向就不对了。
- 当然这个分类方法是已经有大神写出来了。
image = [image fixOrientation];
- 由颜色
UIColor
直接生成对应的图片,当然要指定尺寸。 image = [UIImage imageWithColor:[UIColor colorWithRed:30 green:190 blue:100 alpha:0.1] andSize:CGSizeMake(100, 100)];
- 直接生成
UIColor
类型的颜色,可以指定透明通道
- UIImage等比例缩放、UIImage自定长宽缩放
UIImage *image = [UIImage imageNamed:@"1"];
NSLog(@"%@",NSStringFromCGSize(image.size));// {1920, 1080}
image = [UIImage reSizeImage:image toSize:CGSizeMake(100, 100)];
// image = [UIImage scaleImage:image toScale:0.5];//{960, 540}
NSLog(@"%@",NSStringFromCGSize(image.size));//{100, 100}
- 圆形图片经常用的,直接写一个分类,方便
- 屏幕截图
- 从指定的view截图
// 图片水印
image = [image waterWithWaterImage:[UIImage imageNamed:@"2"] direction:ImageWaterDirectCenter waterSize:CGSizeMake(100, 100) marginXY:CGPointMake(0, 0)];
// 文字水印
image = [image waterWithText:@"哈哈哈" direction:ImageWaterDirectCenter fontColor:[UIColor blackColor] fontPoint:60 marginXY:CGPointMake(0, 0)];
- 用到
CIImage
时可能需要转换,直接生成指定尺寸的UIInage
- 直接将彩色图片转换为黑白的
- 有时候可能需要获取指定位置某个像素的颜色
- 水平旋转或者垂直旋转图片
- 给UIButton添加分类,重写load方法,运用运行时对方法进行交换
- load方法会在第一次引用这个类时调用
- 便捷target,可省去addTarget,直接使用block进行回调点击事件
- 实现方式通过运行时的关联对象功能,给每个UIButton关联一个block来实现回调
- 但是也有不好的地方,无法指定按钮事件的类型,自己看情况使用吧
- 源代码
- 封装一个便捷的block回调来实现UIAlertView的事件。
- 指定两种颜色和渐变色的高度范围即可。
/**
* 生成渐变色
*
* @param c1 头
* @param c2 尾
* @param height 范围
*
* @return 渐变色
*/
+ (UIColor*)gradientFromColor:(UIColor*)c1 toColor:(UIColor*)c2 withHeight:(int)height;
- 16进制数字转换颜色
- 16进制字符串转换颜色
/**
* 由16进制颜色格式生成UIColor
*
* @param hex 16进制颜色0x00FF00
*
* @return UIColor
*/
+ (UIColor *)colorWithHex:(UInt32)hex;
/**
* 由16进制颜色格式生成UIColor
*
* @param hex 16进制颜色0x00FF00
* @param alpha 透明
*
* @return Color
*/
+ (UIColor *)colorWithHex:(UInt32)hex andAlpha:(CGFloat)alpha;
/**
* 由16进制颜色字符串格式生成UIColor
*
* @param hex 16进制颜色#00FF00
*
* @return UIColor
*/
+ (UIColor *)colorWithHexString:(NSString *)hexString;
/**
* 生成当前颜色的16进制字符串
*
* @return 16进制字符串
*/
- (NSString *)HEXString;
+ (UIColor *)colorWithWholeRed:(CGFloat)red
green:(CGFloat)green
blue:(CGFloat)blue
alpha:(CGFloat)alpha;
+ (UIColor *)colorWithWholeRed:(CGFloat)red
green:(CGFloat)green
blue:(CGFloat)blue;
@end
/// 翻转颜色
- (UIColor *)invertedColor;
/// 半透明色
- (UIColor *)colorForTranslucency;
/**
* 更改颜色亮度
*
* @param lighten 亮度从0到1
*
* @return
*/
- (UIColor *)lightenColor:(CGFloat)lighten;
/**
* 更改颜色亮度
*
* @param darken 亮度从0到1
*
* @return
*/
- (UIColor *)darkenColor:(CGFloat)darken;
@end
#import <UIKit/UIKit.h>
@interface UIColor (Random)
/// 随机生成颜色
+ (UIColor *)RandomColor;
@end
- 可以计算包含Cache、library、document三个目录下文件的大小
/**
* 统计应用文件大小
*
* @return 大小
*/
- (NSString *)applicationSize;
/**
* 计算文件夹大小
*
* @param folderPath 文件夹路径
*
* @return 大小
*/
- (unsigned long long)sizeOfFolder:(NSString *)folderPath;
- 包含通讯录、相册、蓝牙、位置、麦克风、提醒、运动数据等权限的获取方式。
//Check permission of service. Cannot check microphone or motion without asking user for permission
-(kPermissionAccess)hasAccessToBluetoothLE;
-(kPermissionAccess)hasAccessToCalendar;
-(kPermissionAccess)hasAccessToContacts;
-(kPermissionAccess)hasAccessToLocation;
-(kPermissionAccess)hasAccessToPhotos;
-(kPermissionAccess)hasAccessToReminders;
//Request permission with callback
/**
* 请求访问日历
*
* @param accessGranted 允许
* @param accessDenied 拒绝
*/
-(void)requestAccessToCalendarWithSuccess:(void(^)())accessGranted andFailure:(void(^)())accessDenied;
/**
* 请求访问通讯录
*
* @param accessGranted 允许
* @param accessDenied 拒绝
*/
-(void)requestAccessToContactsWithSuccess:(void(^)())accessGranted andFailure:(void(^)())accessDenied;
/**
* 请求访问麦克风
*
* @param accessGranted 允许
* @param accessDenied 拒绝
*/
-(void)requestAccessToMicrophoneWithSuccess:(void(^)())accessGranted andFailure:(void(^)())accessDenied;
/**
* 请求访问相册
*
* @param accessGranted 允许
* @param accessDenied 拒绝
*/
-(void)requestAccessToPhotosWithSuccess:(void(^)())accessGranted andFailure:(void(^)())accessDenied;
/**
* 请求访问提醒事项
*
* @param accessGranted 允许
* @param accessDenied 拒绝
*/
-(void)requestAccessToRemindersWithSuccess:(void(^)())accessGranted andFailure:(void(^)())accessDenied;
/**
* 请求访问位置信息
*
* @param accessGranted 允许
* @param accessDenied 拒绝
*/
-(void)requestAccessToLocationWithSuccess:(void(^)())accessGranted andFailure:(void(^)())accessDenied;
/**
* 检查运动状态
*
* @param accessGranted 允许
*/
-(void)requestAccessToMotionWithSuccess:(void(^)())accessGranted;
//Needs investigating - unsure whether it can be implemented because of required delegate callbacks
//-(void)requestAccessToBluetoothLEWithSuccess:(void(^)())accessGranted;
@end
- heartShape
- userShape
- martiniShape
- starShape
- 这种方式绘制起来太复杂,要自己计算各种角度。其实有一个更加方便的工具。在Mac上有个软件叫PaintCode专门绘制适用于OC和Swift的二维图形。
#import <UIKit/UIKit.h>
@interface UIBezierPath (BasicShapes)
/// 心型
+ (UIBezierPath *)heartShape:(CGRect)originalFrame;
/// 用户形状
+ (UIBezierPath *)userShape:(CGRect)originalFrame;
/// 马汀尼
+ (UIBezierPath *)martiniShape:(CGRect)originalFrame;
+ (UIBezierPath *)beakerShape:(CGRect)originalFrame;
/// 五角星
+ (UIBezierPath *)starShape:(CGRect)originalFrame;
/// 多个五角星
+ (UIBezierPath *)stars:(NSUInteger)numberOfStars shapeInFrame:(CGRect)originalFrame;
@end
/// 打印贝瑟尔路径信息
- (NSString*)toSVGString;
/// 十
+ (UIBezierPath *)customBezierPathOfPlusSymbolWithRect:(CGRect)rect // plus
scale:(CGFloat)scale;
/// -
+ (UIBezierPath *)customBezierPathOfMinusSymbolWithRect:(CGRect)rect // minus
scale:(CGFloat)scale;
/**
* ✅号
*
* @param rect 位置
* @param scale 缩放
* @param thick 厚度
*
* @return
*/
+ (UIBezierPath *)customBezierPathOfCheckSymbolWithRect:(CGRect)rect // check
scale:(CGFloat)scale
thick:(CGFloat)thick;
/**
* ❌号
*
* @param rect 位置
* @param scale 缩放
* @param thick 厚度
*
* @return
*/
+ (UIBezierPath *)customBezierPathOfCrossSymbolWithRect:(CGRect)rect // cross
scale:(CGFloat)scale
thick:(CGFloat)thick;
/**
* 箭头
*
* @param rect 位置
* @param scale 缩放
* @param thick 厚度
* @param direction 方向
*
* @return
*/
+ (UIBezierPath *)customBezierPathOfArrowSymbolWithRect:(CGRect)rect // arrow
scale:(CGFloat)scale
thick:(CGFloat)thick
direction:(UIBezierPathArrowDirection)direction;
/**
* ✏️图形
*
* @param rect 位置
* @param scale 缩放
* @param thick 厚度
*
* @return
*/
+ (UIBezierPath *)customBezierPathOfPencilSymbolWithRect:(CGRect)rect // pencil
scale:(CGFloat)scale
thick:(CGFloat)thick;
@end
绘图的源代码比较枯燥,就不贴了,去github看吧
- 使用Block方式处理UIControl控件的点击事件
#import <UIKit/UIKit.h>
@interface UIControl (Block)
- (void)touchDown:(void (^)(void))eventBlock;
- (void)touchDownRepeat:(void (^)(void))eventBlock;
- (void)touchDragInside:(void (^)(void))eventBlock;
- (void)touchDragOutside:(void (^)(void))eventBlock;
- (void)touchDragEnter:(void (^)(void))eventBlock;
- (void)touchDragExit:(void (^)(void))eventBlock;
- (void)touchUpInside:(void (^)(void))eventBlock;
- (void)touchUpOutside:(void (^)(void))eventBlock;
- (void)touchCancel:(void (^)(void))eventBlock;
- (void)valueChanged:(void (^)(void))eventBlock;
- (void)editingDidBegin:(void (^)(void))eventBlock;
- (void)editingChanged:(void (^)(void))eventBlock;
- (void)editingDidEnd:(void (^)(void))eventBlock;
- (void)editingDidEndOnExit:(void (^)(void))eventBlock;
@end
- 一些设备相关的方法
//Return the current device CPU frequency
+ (NSUInteger)cpuFrequency;
// Return the current device BUS frequency
+ (NSUInteger)busFrequency;
//current device RAM size
+ (NSUInteger)ramSize;
//Return the current device CPU number
+ (NSUInteger)cpuNumber;
//Return the current device total memory
/// 获取iOS系统的版本号
+ (NSString *)systemVersion;
/// 判断当前系统是否有摄像头
+ (BOOL)hasCamera;
/// 获取手机内存总量, 返回的是字节数
+ (NSUInteger)totalMemoryBytes;
/// 获取手机可用内存, 返回的是字节数
+ (NSUInteger)freeMemoryBytes;
/// 获取手机硬盘空闲空间, 返回的是字节数
+ (long long)freeDiskSpaceBytes;
/// 获取手机硬盘总空间, 返回的是字节数
+ (long long)totalDiskSpaceBytes;
@end
- UIView的动画,平移,缩放啊,旋转啊,淡入淡出啊等等。
#import <UIKit/UIKit.h>
/**
度数转换弧度
@param degrees 度数
@return 弧度
*/
float radiansForDegrees(int degrees);
@interface UIView (Animation)
#pragma mark - Moves
//
/**
平移
@param destination 方向
@param secs 时间
@param option 动画方式
*/
- (void)moveTo:(CGPoint)destination duration:(float)secs option:(UIViewAnimationOptions)option;
/**
平移
@param destination 方向
@param secs 时间
@param option 动画方式
@param delegate 代理
@param method 动画完成回调
*/
- (void)moveTo:(CGPoint)destination duration:(float)secs option:(UIViewAnimationOptions)option delegate:(id)delegate callback:(SEL)method;
/**
平移
@param destination 方向
@param withSnapBack 是否有回弹效果
*/
- (void)raceTo:(CGPoint)destination withSnapBack:(BOOL)withSnapBack;
/**
平移
@param destination 方向
@param withSnapBack 是否有回弹效果
@param delegate 代理
@param method 动画完成回调
*/
- (void)raceTo:(CGPoint)destination withSnapBack:(BOOL)withSnapBack delegate:(id)delegate callback:(SEL)method;
#pragma mark - Transforms
//
/**
旋转
@param degrees 度数
@param secs 时间
@param delegate 代理
@param method 回调方法
*/
- (void)rotate:(int)degrees secs:(float)secs delegate:(id)delegate callback:(SEL)method;
/**
缩放
@param secs 时间
@param scaleX x
@param scaleY Y
@param delegate 代理
@param method 回调
*/
- (void)scale:(float)secs x:(float)scaleX y:(float)scaleY delegate:(id)delegate callback:(SEL)method;
/**
时钟旋转样式
@param secs 时间
*/
- (void)spinClockwise:(float)secs;
/**
逆时针旋转
@param secs 时间
*/
- (void)spinCounterClockwise:(float)secs;
#pragma mark - Transitions
//
/**
翻页
@param secs 时间
*/
- (void)curlDown:(float)secs;
/**
翻页并移除view
@param secs 时间
*/
- (void)curlUpAndAway:(float)secs;
/**
旋转离开
@param secs 时间
*/
- (void)drainAway:(float)secs;
#pragma mark - Effects
/**
渐变
@param newAlpha 透明度
@param secs 时间
*/
- (void)changeAlpha:(float)newAlpha secs:(float)secs;
/**
交替闪烁
@param secs 时间
@param continuously 持续的
*/
- (void)pulse:(float)secs continuously:(BOOL)continuously;
#pragma mark - add subview
/**
淡出动画
@param subview view
*/
- (void)addSubviewWithFadeAnimation:(UIView *)subview;
@end
- 手势回调block ,快捷添加手势
#import <UIKit/UIKit.h>
/**
block回调
@param gestureRecoginzer 手势信息
*/
typedef void (^GestureActionBlock)(UIGestureRecognizer *gestureRecoginzer);
@interface UIView (BlockGesture)
/**
点击手势回调
@param block
*/
- (void)addTapActionWithBlock:(GestureActionBlock)block;
/**
长按手势回调
@param block
*/
- (void)addLongPressActionWithBlock:(GestureActionBlock)block;
@end
- 看了之前的分类,这个太熟悉了,直接使用关联来管理新功能
- 调试模式下显示出所有UIView的边界,使用方法交换,对所有init方法进行替换,然后绘制边界,重写load方法
- ![Alt text](./屏幕快照 2016-09-27 下午5.39.26.png)
- 主要实现控件可拖动,开启后可在视图内自由拖动控件.
- 这个英文注释也很好看懂,就不翻译了。
/**-----------------------------------------------------------------------------
* @name UIView+draggable Methods
* -----------------------------------------------------------------------------
*/
/** Enables the dragging
*
* Enables the dragging state of the view
*/
- (void)enableDragging;
/** Disable or enable the view dragging
*
* @param draggable The boolean that enables or disables the draggable state
*/
- (void)setDraggable:(BOOL)draggable;
- 快捷加载xib文件,从本地路径读取xib并获取需要的view
#import <UIKit/UIKit.h>
@interface UIView (Nib)
#pragma mark - 就在xib
/**
直接加载和类同名的xib
@return XIB
*/
+ (UINib *)loadNib;
/**
加载xib
@param nibName xib名称
@return xib
*/
+ (UINib *)loadNibNamed:(NSString*)nibName;
/**
加载xib
@param nibName xib名称
@param bundle 路径名称
@return xib
*/
+ (UINib *)loadNibNamed:(NSString*)nibName bundle:(NSBundle *)bundle;
#pragma mark - 加载xib,获取对应view
+ (instancetype)loadInstanceFromNib;
+ (instancetype)loadInstanceFromNibWithName:(NSString *)nibName;
+ (instancetype)loadInstanceFromNibWithName:(NSString *)nibName owner:(id)owner;
/**
加载xib,从xib中获取当前类对应的view
@param nibName xib名称
@param owner 拥有者
@param bundle 路径名
@return 找到需要的view
*/
+ (instancetype)loadInstanceFromNibWithName:(NSString *)nibName owner:(id)owner bundle:(NSBundle *)bundle;
@end
- 打印视图的层级关系,这个方法在调试时很有用,查看view的层级关系。
•UIWindow:0x7f9ad0f080f0
| •UIView:0x7f9ad0d06970
| | *_UILayoutGuide:0x7f9ad0d06d20
| | *_UILayoutGuide:0x7f9ad0d07770
| | UIImageView:0x7f9ad0c075c0
| | UIButton:0x7f9ad0d0c3d0'信息'
| | | UIButtonLabel:0x7f9ad0d0da50'信息'
| | UIButton:0x7f9ad0d0f2d0'点击'
| | | UIImageView:0x7f9ad0d112b0
| | | UIButtonLabel:0x7f9ad0d0f7a0'点击'
Legend:
* - is laid out with auto layout
+ - is laid out manually, but is represented in the layout engine because translatesAutoresizingMaskIntoConstraints = YES
• - layout engine host
#import <UIKit/UIKit.h>
@interface UIView (RecursiveDescription)
//打印视图层级
-(NSString*)recursiveView;
//打印约束
-(NSString*)constraintsDescription;
//打印整个视图树的字符串
-(NSString*)autolayoutTraceDescription;
@end
- 获取屏幕截图,可以直接指定view进行截图
#import <UIKit/UIKit.h>
@interface UIView (Screenshot)
/**
截图
@return UIImage
*/
- (UIImage *)screenshot;
/**
从指定view截图
@param view 指定view
@return UIImage
*/
+ (UIImage *)captureFromView:(UIView *)view;
@end
- 这个也是地震抖动效果,和之前的UITextField+Shake一样
#import <UIKit/UIKit.h>
#import <Foundation/Foundation.h>
typedef NS_ENUM(NSInteger, UIViewShakeDirection) {
UIViewShakeDirectionHorizontal = 0,
UIViewShakeDirectionVertical
};
@interface UIView (Shake)
/**
震动
*/
- (void)shake;
- (void)shake:(int)times withDelta:(CGFloat)delta;
/** 震动指定次数
*
* @param times 次数
* @param delta 偏移量
* @param handler 回调
*/
- (void)shake:(int)times withDelta:(CGFloat)delta completion:(void((^)()))handler;
/** 指定时间内震动多少次
*
* @param times 次数
* @param delta 偏移量
* @param interval 震动时间
*/
- (void)shake:(int)times withDelta:(CGFloat)delta speed:(NSTimeInterval)interval;
/** 震动
*
* @param times 次数
* @param delta 偏移量
* @param handler 回调
* @param interval 震动时间
*/
- (void)shake:(int)times withDelta:(CGFloat)delta speed:(NSTimeInterval)interval completion:(void((^)()))handler;
/** 震动
*
* @param times 次数
* @param delta 偏移量
* @param interval 震动时间
* @param direction 震动方向
*/
- (void)shake:(int)times withDelta:(CGFloat)delta speed:(NSTimeInterval)interval shakeDirection:(UIViewShakeDirection)shakeDirection;
/** 震动
*
* @param times 次数
* @param delta 偏移量
* @param interval 震动时间
* @param direction 震动方向
* @param handler 回调block
*/
- (void)shake:(int)times withDelta:(CGFloat)delta speed:(NSTimeInterval)interval shakeDirection:(UIViewShakeDirection)shakeDirection completion:(void((^)()))handler;
@end
- 这个是安卓类似的toast提示效果,还不错 -![Alt text](./屏幕快照 2016-09-28 上午10.41.29.png)
#import <UIKit/UIKit.h>
extern NSString * const CSToastPositionTop;
extern NSString * const CSToastPositionCenter;
extern NSString * const CSToastPositionBottom;
@interface UIView (Toast)
#pragma mark - toast提示
// each makeToast method creates a view and displays it as toast
- (void)makeToast:(NSString *)message;
- (void)makeToast:(NSString *)message duration:(NSTimeInterval)interval position:(id)position;
- (void)makeToast:(NSString *)message duration:(NSTimeInterval)interval position:(id)position image:(UIImage *)image;
- (void)makeToast:(NSString *)message duration:(NSTimeInterval)interval position:(id)position title:(NSString *)title;
- (void)makeToast:(NSString *)message duration:(NSTimeInterval)interval position:(id)position title:(NSString *)title image:(UIImage *)image;
#pragma mark - 显示菊花转动
// displays toast with an activity spinner
- (void)makeToastActivity;
- (void)makeToastActivity:(id)position;
- (void)hideToastActivity;
#pragma mark - 将View当做一个toast弹出
// the showToast methods display any view as toast
- (void)showToast:(UIView *)toast;
- (void)showToast:(UIView *)toast duration:(NSTimeInterval)interval position:(id)point;
- (void)showToast:(UIView *)toast duration:(NSTimeInterval)interval position:(id)point
tapCallback:(void(^)(void))tapCallback;
@end
- 获取当前view的控制器对象,这个很常用
#import <UIKit/UIKit.h>
@interface UIView (CurrentController)
/** 获取当前View的控制器对象 */
-(UIViewController *)getCurrentViewController;
@end
@(iOS)[NSString]
- 各种正则表达式
#import <Foundation/Foundation.h>
/**
* 正则表达式简单说明
* 语法:
. 匹配除换行符以外的任意字符
\w 匹配字母或数字或下划线或汉字
\s 匹配任意的空白符
\d 匹配数字
\b 匹配单词的开始或结束
^ 匹配字符串的开始
$ 匹配字符串的结束
* 重复零次或更多次
+ 重复一次或更多次
? 重复零次或一次
{n} 重复n次
{n,} 重复n次或更多次
{n,m} 重复n到m次
\W 匹配任意不是字母,数字,下划线,汉字的字符
\S 匹配任意不是空白符的字符
\D 匹配任意非数字的字符
\B 匹配不是单词开头或结束的位置
[^x] 匹配除了x以外的任意字符
[^aeiou]匹配除了aeiou这几个字母以外的任意字符
*? 重复任意次,但尽可能少重复
+? 重复1次或更多次,但尽可能少重复
?? 重复0次或1次,但尽可能少重复
{n,m}? 重复n到m次,但尽可能少重复
{n,}? 重复n次以上,但尽可能少重复
\a 报警字符(打印它的效果是电脑嘀一声)
\b 通常是单词分界位置,但如果在字符类里使用代表退格
\t 制表符,Tab
\r 回车
\v 竖向制表符
\f 换页符
\n 换行符
\e Escape
\0nn ASCII代码中八进制代码为nn的字符
\xnn ASCII代码中十六进制代码为nn的字符
\unnnn Unicode代码中十六进制代码为nnnn的字符
\cN ASCII控制字符。比如\cC代表Ctrl+C
\A 字符串开头(类似^,但不受处理多行选项的影响)
\Z 字符串结尾或行尾(不受处理多行选项的影响)
\z 字符串结尾(类似$,但不受处理多行选项的影响)
\G 当前搜索的开头
\p{name} Unicode中命名为name的字符类,例如\p{IsGreek}
(?>exp) 贪婪子表达式
(?<x>-<y>exp) 平衡组
(?im-nsx:exp) 在子表达式exp中改变处理选项
(?im-nsx) 为表达式后面的部分改变处理选项
(?(exp)yes|no) 把exp当作零宽正向先行断言,如果在这个位置能匹配,使用yes作为此组的表达式;否则使用no
(?(exp)yes) 同上,只是使用空表达式作为no
(?(name)yes|no) 如果命名为name的组捕获到了内容,使用yes作为表达式;否则使用no
(?(name)yes) 同上,只是使用空表达式作为no
捕获
(exp) 匹配exp,并捕获文本到自动命名的组里
(?<name>exp) 匹配exp,并捕获文本到名称为name的组里,也可以写成(?'name'exp)
(?:exp) 匹配exp,不捕获匹配的文本,也不给此分组分配组号
零宽断言
(?=exp) 匹配exp前面的位置
(?<=exp) 匹配exp后面的位置
(?!exp) 匹配后面跟的不是exp的位置
(?<!exp) 匹配前面不是exp的位置
注释
(?#comment) 这种类型的分组不对正则表达式的处理产生任何影响,用于提供注释让人阅读
* 表达式:\(?0\d{2}[) -]?\d{8}
* 这个表达式可以匹配几种格式的电话号码,像(010)88886666,或022-22334455,或02912345678等。
* 我们对它进行一些分析吧:
* 首先是一个转义字符\(,它能出现0次或1次(?),然后是一个0,后面跟着2个数字(\d{2}),然后是)或-或空格中的一个,它出现1次或不出现(?),
* 最后是8个数字(\d{8})
*/
#import <Foundation/Foundation.h>
@interface NSString (RegexCategory)
/**
* 手机号码的有效性:分电信、联通、移动和小灵通
*/
- (BOOL)isMobileNumberClassification;
/**
* 手机号有效性
*/
- (BOOL)isMobileNumber;
/**
* 邮箱的有效性
*/
- (BOOL)isEmailAddress;
/**
* 简单的身份证有效性
*
*/
- (BOOL)simpleVerifyIdentityCardNum;
/**
* 精确的身份证号码有效性检测
*
* @param value 身份证号
*/
+ (BOOL)accurateVerifyIDCardNumber:(NSString *)value;
/**
* 车牌号的有效性
*/
- (BOOL)isCarNumber;
/**
* 银行卡的有效性
*/
- (BOOL)bankCardluhmCheck;
/**
* IP地址有效性
*/
- (BOOL)isIPAddress;
/**
* Mac地址有效性
*/
- (BOOL)isMacAddress;
/**
* 网址有效性
*/
- (BOOL)isValidUrl;
/**
* 纯汉字
*/
- (BOOL)isValidChinese;
/**
* 邮政编码
*/
- (BOOL)isValidPostalcode;
/**
* 工商税号
*/
- (BOOL)isValidTaxNo;
/**
@brief 是否符合最小长度、最长长度,是否包含中文,首字母是否可以为数字
@param minLenth 账号最小长度
@param maxLenth 账号最长长度
@param containChinese 是否包含中文
@param firstCannotBeDigtal 首字母不能为数字
@return 正则验证成功返回YES, 否则返回NO
*/
- (BOOL)isValidWithMinLenth:(NSInteger)minLenth
maxLenth:(NSInteger)maxLenth
containChinese:(BOOL)containChinese
firstCannotBeDigtal:(BOOL)firstCannotBeDigtal;
/**
@brief 是否符合最小长度、最长长度,是否包含中文,数字,字母,其他字符,首字母是否可以为数字
@param minLenth 账号最小长度
@param maxLenth 账号最长长度
@param containChinese 是否包含中文
@param containDigtal 包含数字
@param containLetter 包含字母
@param containOtherCharacter 其他字符
@param firstCannotBeDigtal 首字母不能为数字
@return 正则验证成功返回YES, 否则返回NO
*/
- (BOOL)isValidWithMinLenth:(NSInteger)minLenth
maxLenth:(NSInteger)maxLenth
containChinese:(BOOL)containChinese
containDigtal:(BOOL)containDigtal
containLetter:(BOOL)containLetter
containOtherCharacter:(NSString *)containOtherCharacter
firstCannotBeDigtal:(BOOL)firstCannotBeDigtal;
@end
@(iOS)[NSDate]
- 这个分类是NSDate的超级分类,常见的功能都在。
#import <Foundation/Foundation.h>
@interface NSDate (Extension)
/**
* 获取日、月、年、小时、分钟、秒
*/
- (NSUInteger)day;
- (NSUInteger)month;
- (NSUInteger)year;
- (NSUInteger)hour;
- (NSUInteger)minute;
- (NSUInteger)second;
+ (NSUInteger)day:(NSDate *)date;
+ (NSUInteger)month:(NSDate *)date;
+ (NSUInteger)year:(NSDate *)date;
+ (NSUInteger)hour:(NSDate *)date;
+ (NSUInteger)minute:(NSDate *)date;
+ (NSUInteger)second:(NSDate *)date;
/**
* 获取一年中的总天数
*/
- (NSUInteger)daysInYear;
+ (NSUInteger)daysInYear:(NSDate *)date;
/**
* 判断是否是润年
* @return YES表示润年,NO表示平年
*/
- (BOOL)isLeapYear;
+ (BOOL)isLeapYear:(NSDate *)date;
/**
* 获取该日期是该年的第几周
*/
- (NSUInteger)weekOfYear;
+ (NSUInteger)weekOfYear:(NSDate *)date;
/**
* 获取格式化为YYYY-MM-dd格式的日期字符串
*/
- (NSString *)formatYMD;
+ (NSString *)formatYMD:(NSDate *)date;
/**
* 返回当前月一共有几周(可能为4,5,6)
*/
- (NSUInteger)weeksOfMonth;
+ (NSUInteger)weeksOfMonth:(NSDate *)date;
/**
* 获取该月的第一天的日期
*/
- (NSDate *)begindayOfMonth;
+ (NSDate *)begindayOfMonth:(NSDate *)date;
/**
* 获取该月的最后一天的日期
*/
- (NSDate *)lastdayOfMonth;
+ (NSDate *)lastdayOfMonth:(NSDate *)date;
/**
* 返回day天后的日期(若day为负数,则为|day|天前的日期)
*/
- (NSDate *)dateAfterDay:(NSUInteger)day;
+ (NSDate *)dateAfterDate:(NSDate *)date day:(NSInteger)day;
/**
* 返回day天后的日期(若day为负数,则为|day|天前的日期)
*/
- (NSDate *)dateAfterMonth:(NSUInteger)month;
+ (NSDate *)dateAfterDate:(NSDate *)date month:(NSInteger)month;
/**
* 返回numYears年后的日期
*/
- (NSDate *)offsetYears:(int)numYears;
+ (NSDate *)offsetYears:(int)numYears fromDate:(NSDate *)fromDate;
/**
* 返回numMonths月后的日期
*/
- (NSDate *)offsetMonths:(int)numMonths;
+ (NSDate *)offsetMonths:(int)numMonths fromDate:(NSDate *)fromDate;
/**
* 返回numDays天后的日期
*/
- (NSDate *)offsetDays:(int)numDays;
+ (NSDate *)offsetDays:(int)numDays fromDate:(NSDate *)fromDate;
/**
* 返回numHours小时后的日期
*/
- (NSDate *)offsetHours:(int)hours;
+ (NSDate *)offsetHours:(int)numHours fromDate:(NSDate *)fromDate;
/**
* 距离该日期前几天
*/
- (NSUInteger)daysAgo;
+ (NSUInteger)daysAgo:(NSDate *)date;
/**
* 获取星期几
*
* @return Return weekday number
* [1 - Sunday]
* [2 - Monday]
* [3 - Tuerday]
* [4 - Wednesday]
* [5 - Thursday]
* [6 - Friday]
* [7 - Saturday]
*/
- (NSInteger)weekday;
+ (NSInteger)weekday:(NSDate *)date;
/**
* 获取星期几(名称)
*
* @return Return weekday as a localized string
* [1 - Sunday]
* [2 - Monday]
* [3 - Tuerday]
* [4 - Wednesday]
* [5 - Thursday]
* [6 - Friday]
* [7 - Saturday]
*/
- (NSString *)dayFromWeekday;
+ (NSString *)dayFromWeekday:(NSDate *)date;
/**
* 日期是否相等
*
* @param anotherDate The another date to compare as NSDate
* @return Return YES if is same day, NO if not
*/
- (BOOL)isSameDay:(NSDate *)anotherDate;
/**
* 是否是今天
*
* @return Return if self is today
*/
- (BOOL)isToday;
/**
* Add days to self
*
* @param days The number of days to add
* @return Return self by adding the gived days number
*/
- (NSDate *)dateByAddingDays:(NSUInteger)days;
/**
* Get the month as a localized string from the given month number
*
* @param month The month to be converted in string
* [1 - January]
* [2 - February]
* [3 - March]
* [4 - April]
* [5 - May]
* [6 - June]
* [7 - July]
* [8 - August]
* [9 - September]
* [10 - October]
* [11 - November]
* [12 - December]
*
* @return Return the given month as a localized string
*/
+ (NSString *)monthWithMonthNumber:(NSInteger)month;
/**
* 根据日期返回字符串
*/
+ (NSString *)stringWithDate:(NSDate *)date format:(NSString *)format;
- (NSString *)stringWithFormat:(NSString *)format;
+ (NSDate *)dateWithString:(NSString *)string format:(NSString *)format;
/**
* 获取指定月份的天数
*/
- (NSUInteger)daysInMonth:(NSUInteger)month;
+ (NSUInteger)daysInMonth:(NSDate *)date month:(NSUInteger)month;
/**
* 获取当前月份的天数
*/
- (NSUInteger)daysInMonth;
+ (NSUInteger)daysInMonth:(NSDate *)date;
/**
* 返回x分钟前/x小时前/昨天/x天前/x个月前/x年前
*/
- (NSString *)timeInfo;
+ (NSString *)timeInfoWithDate:(NSDate *)date;
+ (NSString *)timeInfoWithDateString:(NSString *)dateString;
/**
* 分别获取yyyy-MM-dd/HH:mm:ss/yyyy-MM-dd HH:mm:ss格式的字符串
*/
- (NSString *)ymdFormat;
- (NSString *)hmsFormat;
- (NSString *)ymdHmsFormat;
+ (NSString *)ymdFormat;
+ (NSString *)hmsFormat;
+ (NSString *)ymdHmsFormat;
@end