代码改变世界

随笔分类 -  第三方框架

FMDB的简单使用

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

iOS Reachability的基本用法

2016-01-27 17:41 by 甘雨路, 387 阅读, 收藏,
摘要: #import <UIKit/UIKit.h> @interface AppDelegate : UIResponder <UIApplicationDelegate> @property (strong, nonatomic) UIWindow *window; @end #import "App 阅读全文

iOS 上拉刷新和下拉加在更多(第三方框架EGOTableViewPullRefresh)

2015-12-31 00:04 by 甘雨路, 304 阅读, 收藏,
摘要: #import @interface AppDelegate : UIResponder @property (strong, nonatomic) UIWindow *window;@end#import "AppDelegate.h"#import "RootViewController.h"@... 阅读全文

iOS TPKeyboardAvoiding自动识别键盘的高度

2015-12-18 10:16 by 甘雨路, 2434 阅读, 收藏,
摘要: #import @interface AppDelegate : UIResponder @property (strong, nonatomic) UIWindow *window;@end#import "AppDelegate.h"#import "RootViewControl... 阅读全文

下拉刷新和上拉加载更多(第三方框架MJRefresh)

2015-07-06 20:01 by 甘雨路, 604 阅读, 收藏,
摘要: 1 #import "RootViewController.h" 2 #import "MJRefresh.h" 3 @interface RootViewController () 4 { 5 UITableView *_tableView ; 6 NSMutable... 阅读全文