代码改变世界

随笔分类 -  UICollectionView

iOS 瀑布流的Demo

2016-08-31 16:56 by 甘雨路, 613 阅读, 收藏,
摘要: /** * 瀑布流Demo的主要代码,若想看完整的代码请到下面链接去下载 * * 链接: https://pan.baidu.com/s/1slByAHB 密码: r3q6 */ #import @interface AppDelegate : UIResponder @property (strong, nonatomic) UIWi... 阅读全文

iOS 瀑布流的基本原理

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

iOS UICollectionView之三(基本用法)

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

iOS UICollectionView之二(垂直滚动)

2016-01-25 10:47 by 甘雨路, 1733 阅读, 收藏,
摘要: #import @interface AppDelegate : UIResponder @property (strong, nonatomic) UIWindow *window;@end#import "AppDelegate.h"#import "RootViewController.h"@... 阅读全文

iOS UICollectionView之-(水平滚动)

2016-01-25 10:43 by 甘雨路, 2100 阅读, 收藏,
摘要: #import @interface AppDelegate : UIResponder @property (strong, nonatomic) UIWindow *window;@end#import "AppDelegate.h"#import "RootViewController.h"@... 阅读全文