博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
常用类方法
阅读量:6353 次
发布时间:2019-06-22

本文共 1330 字,大约阅读时间需要 4 分钟。

  hot3.png

#import 
/** * 通过UIColor创建UIImage * * @param color 颜色 * * @return UIImage */+ (UIImage*)createImageWithColor:(UIColor *)color { CGRect rect = CGRectMake(0.0f, 0.0f, 1.0f, 1.0f); UIGraphicsBeginImageContext(rect.size); CGContextRef context = UIGraphicsGetCurrentContext(); CGContextSetFillColorWithColor(context, [color CGColor]); CGContextFillRect(context, rect); UIImage *theImage = UIGraphicsGetImageFromCurrentImageContext(); UIGraphicsEndImageContext(); return theImage;}/** * 判断字符串是否为空 * * @param thestring 字符串 * * @return 是否为空 */+ (BOOL)isEmptyString:(NSString *)thestring { if ( !thestring || thestring == nil || thestring == Nil) { return YES; } if (thestring == nil) { return YES; } if (thestring == NULL) { return YES; } if ([thestring isKindOfClass:[NSNull class]]) { return YES; } if ([thestring isEqual:[NSNull null]]) { return YES; } if ([thestring isEqualToString:@"
"]) { return YES; } if ([thestring isEqualToString:@"(null)"]) { return YES; } if ([[thestring stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceAndNewlineCharacterSet]] length]==0) { return YES; } return NO;}

 

转载于:https://my.oschina.net/123009/blog/705325

你可能感兴趣的文章
linux运维常见英文报错中文翻译(菜鸟必知)
查看>>
[原][osgEarth]添加自由飞行漫游器
查看>>
代码审查 Code Review
查看>>
fastjson如何指定字段不序列化
查看>>
[日常] Go语言圣经--示例: 并发的Echo服务
查看>>
BZOJ1969: [Ahoi2005]LANE 航线规划(LCT)
查看>>
linux内存管理之malloc、vmalloc、kmalloc的区别
查看>>
GreenDao 数据库升级 连接多个DB文件 或者指定不同的model&dao目录
查看>>
M1卡破解(自从学校升级系统之后,还准备在研究下)【转】
查看>>
vue 访问子组件示例 或者子元素
查看>>
linux内核--自旋锁的理解
查看>>
银行卡的三个磁道
查看>>
OpenSSL 提取 pfx 数字证书公钥与私钥
查看>>
Keepalived详解(四):通过vrrp_script实现对集群资源的监控【转】
查看>>
CollapsingToolbarLayoutDemo【可折叠式标题栏,顺便带有CardView卡片式布局】
查看>>
CentOS7.4安装配置mysql5.7 TAR免安装版
查看>>
解决IE二级链接无法打开故障
查看>>
Windows phone应用开发[16]-数据加密
查看>>
SQL Server 迁移数据到MySQL
查看>>
通用数据压缩算法简介
查看>>