摘要:
//身份证号验证 1900+/2000+的年份日期的正则表达式经过修改,目前貌似是对的,如果哪位朋友发现错误希望能够给与提示 //返回yes位表示格式正确,否则为错误 -(BOOL)IDCardAuth:(NSString *)value { //stringByTrimmingCharactersInSet :去除字符串中的特殊字符 //[NSCharacterSet whit... 阅读全文
摘要:
- (void)scrollToBottom { NSInteger sectionCount = [self.dataSource numberOfSectionsInTableView:self]; NSInteger lastSectionRowCount = [self.dataSource tableView:self numberOfRowsInSection:sec... 阅读全文
摘要:
demo下载地址:https://github.com/haozheMa/PullAndDownDemo2 阅读全文
摘要:
category和associative作为objective-c的扩展机制的两个特性,category用来扩展类的方法,associative可以用来扩展类的属性。使用associative需要导入<objc/runtime.h>文件。 他有三个方法1.设置关联对象 objc_setAssocia 阅读全文
摘要:
下载Git工具:下载链接 https://git-scm.com/downloads/ 然后配置Git:配置教程链接 http://jingyan.baidu.com/article/ceb9fb10b918a48cac2ba07d.html 最后安装GitHub DeskTop : 教程链接 ht 阅读全文
摘要:
demo下载地址:https://github.com/haozheMa/LoopProgressDemo/tree/master ViewController中的代码 ProgressView中的代码 阅读全文
摘要:
encode 根据需要可以使用GBK的中文编码,不需要中文的话可以使用UTF-8编码 阅读全文
摘要:
转自http://www.cnblogs.com/jys509/p/4839803.html Cocoapods安装步骤 1.升级Ruby环境 如果Ruby没有安装,请参考 如何在Mac OS X上安装 Ruby运行环境 2.安装CocoaPods时我们要访问cocoapods.org,用淘宝的Ru 阅读全文
摘要:
layer类似于ps的图层,如果把一个uiview看做图片的画,layer就像是图层.一个图片是由很多个大小不同的有层次的图层构成的,uiview也是.1. 一个view有一个underlying layer,它是这个view所有的draw的实现者,可通过view的layer property获得, 阅读全文
摘要:
转至 http://blog.csdn.net/guo_hongjun1611/article/details/7839371 使用UIBezierPath类可以创建基于矢量的路径,这个类在UIKit中。此类是Core Graphics框架关于path的一个封装。使用此类可以定义简单的形状,如椭圆或 阅读全文