代码改变世界

随笔档案-2016年05月

CNContact对通讯录的基本使用(第二篇)

2016-05-07 22:11 by 甘雨路, 7142 阅读, 收藏,
摘要: /** * 注意:iOS9才有能使用 * 首先在工程里导入ContactsUI.framework和Contacts.framework两个框架 * * * 源代码的链接地址 * 链接: http://pan.baidu.com/s/1jHDsvGU 密码: 7tfj */ #import "RootViewController.h" #import #import ... 阅读全文

CNContact对通讯录的基本使用(增删改查)

2016-05-07 10:11 by 甘雨路, 2031 阅读, 收藏,
摘要: /** * 注意:iOS9才有能使用 * 首先在工程里导入ContactsUI.framework和Contacts.framework两个框架 * * * 源代码的链接地址 * 链接: http://pan.baidu.com/s/1mh9Q0BY 密码: wmj5 */ #import "RootViewController.h" #import #import ... 阅读全文

FMDB的简单使用

2016-05-06 13:39 by 甘雨路, 364 阅读, 收藏,
摘要: #import @interface AppDelegate : UIResponder /** * 源代码的链接地址 * 链接: http://pan.baidu.com/s/1pKTxfyb 密码: eqa3 * */ @property (strong, nonatomic) UIWindow *window; @end #import "AppDelegate... 阅读全文

仿网易抽屉效果

2016-05-05 17:21 by 甘雨路, 440 阅读, 收藏,
摘要: /** * 源代码的链接 * 链接: http://pan.baidu.com/s/1c2hqDzy 密码: jscx */ #import @interface AppDelegate : UIResponder @property (strong, nonatomic) UIWindow *window; @end #import "AppDelegate.h" ... 阅读全文

通过颜色生成图片

2016-05-02 21:58 by 甘雨路, 346 阅读, 收藏,
摘要: /** * 通过颜色生成纯颜色的图片 */ #import @interface AppDelegate : UIResponder @property (strong, nonatomic) UIWindow *window; @end #import "AppDelegate.h" #import "RootViewController.h" @interface A... 阅读全文