博客统计
摘要: 作为iOS开发最常用的两个多视图控制器 NavigationController 和 TabBarController 已经很强大了,基本上在大部分的应用中都能看到它们的影子。但是在使用的过程中,系统自带的空间也经常不能满足我们的需求,所以经常需要使用自定义来实现功能。之前写过自定义Naviga... 阅读全文
posted @ 2015-09-15 15:25 coderCD 阅读(8353) 评论(0) 推荐(0) 编辑
摘要: #pragma mark - Core Data stack/** * @synthesize 关联成员变量和属性 */@synthesize managedObjectContext = _managedObjectContext;/** * */@synthesize managedObjec... 阅读全文
posted @ 2015-09-15 15:22 coderCD 阅读(366) 评论(0) 推荐(0) 编辑
摘要: 一、什么是SQLite SQLite是一款轻型的嵌入式数据库,它占用资源非常的低,处理速度快,非常适合用于移动端开发。二、使用 创建DataBaseHandle.h & DataBaseHandle.m DataBaseHandle.h#import #import "Student.h"... 阅读全文
posted @ 2015-09-15 14:47 coderCD 阅读(194) 评论(0) 推荐(0) 编辑