2016年5月4日

摘要: // // ViewController.m // 01-CoreData基本使用 // // Created by mac on 16/5/4. // Copyright © 2016年 mac. All rights reserved. // #import "ViewController.h" #import #import "User.h" @interface ViewC... 阅读全文
posted @ 2016-05-04 19:54 爱你久久iOS 阅读(136) 评论(0) 推荐(0) 编辑
摘要: // // ViewController.m // 02-CoreData-系统自带CoreData // // Created by mac on 16/5/4. // Copyright © 2016年 mac. All rights reserved. // #import "ViewController.h" #import "Student.h" #import "LYHCl... 阅读全文
posted @ 2016-05-04 19:53 爱你久久iOS 阅读(152) 评论(0) 推荐(0) 编辑
摘要: // // ViewController.m // 01-CoreData基本使用 // // Created by mac on 16/5/4. // Copyright © 2016年 mac. All rights reserved. // #import "ViewController.h" #import #import "User.h" @interface ViewC... 阅读全文
posted @ 2016-05-04 14:53 爱你久久iOS 阅读(149) 评论(0) 推荐(0) 编辑

2016年5月3日

摘要: DML、DDL、DCL区别 . 总体解释: DML(data manipulation language): 它们是SELECT、UPDATE、INSERT、DELETE,就象它的名字一样,这4条命令是用来对数据库里的数据进行操作的语言 DDL(data definition language): DDL比DML要多,主要的命令有CREATE、ALTER、DROP等,DDL主要是用... 阅读全文
posted @ 2016-05-03 19:23 爱你久久iOS 阅读(205) 评论(0) 推荐(0) 编辑
摘要: 1 // 2 // ViewController.m 3 // 01-属性列表使用 4 // 5 // Created by mac on 01/1/3. 6 // Copyright © 2001年 mac. All rights reserved. 7 // 8 9 /** 10 11 表:一张完整的数据表,用于记录数据 12 字段:数据表中的元素或者... 阅读全文
posted @ 2016-05-03 16:53 爱你久久iOS 阅读(149) 评论(0) 推荐(0) 编辑
摘要: SQL语句总结 1.SQL 语句不区分大小写,关键字大写处理 2.SQL 语句中的命名不能喝关键字冲突 3.每条语句都以;结束。 4. DDL:数据定义型语言 1)创建表:CREATE TABLE studentTable (name text,identify text,age integer); 2)删除表:DROP TABLE movieTable; 5.DML:数据操作型语言... 阅读全文
posted @ 2016-05-03 15:54 爱你久久iOS 阅读(167) 评论(0) 推荐(0) 编辑
摘要: 首先,在正式使用Masonry之前,我们先来看看在xib中我们是如何使用AutoLayout 从图中我们可以看出,只要设置相应得局限,控制好父视图与子视图之间的关系就应该很ok的拖出你需要的需求。这里就不详细讲解具体拖拽的方法..... 然后,我们按着上图的属性来看看如何简单得使用Masonry 这里是Masonry给我们的属性 @property (nonatomic, stron... 阅读全文
posted @ 2016-05-03 15:42 爱你久久iOS 阅读(139) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2016-05-03 10:59 爱你久久iOS 阅读(103) 评论(0) 推荐(0) 编辑

2016年4月27日

摘要: IOS第三方框架集合 Reachability 检测网络连接 用来检查网络连接是否可用:包括WIFI和WWAN(3G/EDGE/CDMA等)两种工作模式。 现在有更好的替代品:https://github.com/tonymillion/Reachability,比Apple提供的兼容性更好,而且更加好用,更具体的使用方法请看它提供的例子。 Reachability reach = [R... 阅读全文
posted @ 2016-04-27 11:18 爱你久久iOS 阅读(166) 评论(0) 推荐(0) 编辑
摘要: 6 iOS 开发者能用上的 10 个 Xcode 插件 7 8 2014/12/08 · iOS, 工具与资源 · iOS, Xcode 9 分享到: 22 10 本文由 伯乐在线 - 邢敏 翻译,黄利民 校稿。未经许可,禁止转载! 11 英文出处:code.tutsplus.com。欢迎加入翻译组。 12 1. XcodeColors:给 Xcode 控制台添加颜色 1... 阅读全文
posted @ 2016-04-27 11:10 爱你久久iOS 阅读(148) 评论(0) 推荐(0) 编辑

导航