代码改变世界

iOS 瀑布流的基本原理

2016-08-31 16:46 by 甘雨路, 1790 阅读, 0 推荐, 收藏, 编辑
摘要:/** * 源代码链接 * 链接: https://pan.baidu.com/s/1nvLamEX 密码: kya5 */ #import @interface AppDelegate : UIResponder @property (strong, nonatomic) UIWindow *window; @end #impo... 阅读全文

iOS 生成二维码

2016-08-02 15:04 by 甘雨路, 265 阅读, 0 推荐, 收藏, 编辑
摘要:#import @interface AppDelegate : UIResponder @property (strong, nonatomic) UIWindow *window; @end #import "AppDelegate.h" #import "RootViewController.h" @interface AppDelegate () @end @i... 阅读全文

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

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

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

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

FMDB的简单使用

2016-05-06 13:39 by 甘雨路, 354 阅读, 0 推荐, 收藏, 编辑
摘要:#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 甘雨路, 432 阅读, 1 推荐, 收藏, 编辑
摘要:/** * 源代码的链接 * 链接: 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 甘雨路, 312 阅读, 0 推荐, 收藏, 编辑
摘要:/** * 通过颜色生成纯颜色的图片 */ #import @interface AppDelegate : UIResponder @property (strong, nonatomic) UIWindow *window; @end #import "AppDelegate.h" #import "RootViewController.h" @interface A... 阅读全文

异步网络请求

2016-04-29 15:19 by 甘雨路, 271 阅读, 0 推荐, 收藏, 编辑
摘要:#import @interface AppDelegate : UIResponder @property (strong, nonatomic) UIWindow *window; @end #import "AppDelegate.h" #import "RootViewController.h" @interface AppDelegate () @end @impl... 阅读全文

动画的button(按下时缩小,松开时恢复)

2016-04-26 17:48 by 甘雨路, 790 阅读, 0 推荐, 收藏, 编辑
摘要:#import @interface AppDelegate : UIResponder @property (strong, nonatomic) UIWindow *window; @end #import "AppDelegate.h" #import "RootViewController.h" @interface AppDelegate () @end @impl... 阅读全文

单例传值

2016-04-22 17:15 by 甘雨路, 231 阅读, 0 推荐, 收藏, 编辑
摘要:/** * 单例传值 对象且初始化一次,页面之间相隔很多依旧可传值 */ #import @interface AppDelegate : UIResponder @property (strong, nonatomic) UIWindow *window; @end #import "AppDelegate.h" #import "RootViewController.... 阅读全文
上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 22 下一页