摘要: 正则表达式在编写处理字符串的程序时,经常会有查找符合某些复杂规则的字符串的需要。正则表达式就是用于描述这些规则的工具。换句话说,正则表达式就是记录文本规则的代码正则表达式是对字符串操作的一种逻辑公式,用事先定义好的一些特定字符、及这些特定字符的组合,组成一个"规则字符串",这个"规则字符串"用来表达 阅读全文
posted @ 2016-04-25 19:46 o.0...w 阅读(498) 评论(0) 推荐(0) 编辑
摘要: #import "ViewController.h" #import "Person.h" @interface ViewController () @property(nonatomic ,strong)Person * people; @end @implementation ViewController - (void)viewDidLoad { [super viewDi... 阅读全文
posted @ 2016-04-25 17:27 o.0...w 阅读(177) 评论(0) 推荐(0) 编辑
摘要: #import "ViewController.h" #import #import @interface ViewController () @property (weak, nonatomic) IBOutlet UIImageView *codeImage; @property (weak, nonatomic) IBOutlet UIButton *makeCode; @pr... 阅读全文
posted @ 2016-04-25 15:32 o.0...w 阅读(235) 评论(0) 推荐(0) 编辑
摘要: 摇一摇功能: -(void)motionBegan:(UIEventSubtype)motion withEvent:(UIEvent *)event{ NSLog(@"开始摇一摇"); }-(void)motionEnded:(UIEventSubtype)motion withEvent:(UI 阅读全文
posted @ 2016-04-25 11:30 o.0...w 阅读(186) 评论(0) 推荐(0) 编辑
摘要: 以上是CoreMotion框架实现加速计的demo,下面是已经过期的API 实现加速计的代码: iOS 5.0 推出的UIAccelerometer 后不更新 被CoreMotion 框架替代 •加速计使用步骤 –1. 获取共享加速计对象 –2. 设置加速计数据更新频率 –3. 设置加速计对象代理 阅读全文
posted @ 2016-04-25 11:03 o.0...w 阅读(218) 评论(0) 推荐(0) 编辑