UI中常见方法的使用
文章平均质量分 73
奔跑吧年轻人
学而不思则罔 思而不学则殆。。。加油!!!
展开
-
常见手势的响应事件
每一个对象都有自己的 tag 值 在后面可以根据它的tag值取到这个视图 view1.tag = 101; UIView *view2 = [self.view viewWithTag:101]; 手势: 轻拍 长按 旋转 啮合 平移 轻拍的响应事件 UITapGestureRecognizer *tap = [[UITapGestureRecognizer alloc] in原创 2016-01-08 16:51:29 · 731 阅读 · 1 评论 -
XML文件的解析和json的解析
解析就是从事先规定好的格式中提取数据 XML的解析方式有两种 SAX解析 DCM解析(安卓有一个PULL) SAX解析: NSString *path = [[NSBundle mainBundle] pathForResource:@"Message" ofType:@"txt"]; NSData *data = [NSData dataWithContentsOfFile:原创 2016-01-09 19:10:36 · 481 阅读 · 0 评论 -
常见的页面之间的传值
正向传值 第一步:在目标控制器中声明属性 @property (nonatomic, copy)NSString *text; 第二步:在push之前将值赋给属性 SecondViewController *svc = [[SecondViewController alloc] init]; svc.text = self.fv.field.text; [self.navigation原创 2016-01-09 14:33:21 · 355 阅读 · 0 评论 -
常用sql语句
建表: create table t_student(id integer, name text, age integer, score real); create table if not exists t_student(id integer, name text, age integer, score real); 删表: drop table t_student; d原创 2016-04-24 14:13:38 · 455 阅读 · 0 评论