首页 > 代码库 > QuiltView 瀑布流 (第三方)
QuiltView 瀑布流 (第三方)
使用第三方 : QuiltView (可在cocoapods上找到)
.h 文件
#import <UIKit/UIKit.h> #import "TMQuiltView.h" #import "TMPhotoQuiltViewCell.h" @interface SelfHomeViewController : UIViewController <TMQuiltViewDataSource,TMQuiltViewDelegate> { } @property(strong,nonatomic)TMQuiltView *quiltView; @property(strong,nonatomic)NSArray *images; @end
.m 文件
主要代码:
#define kNumberOfCells 50 - (void)dealloc { [_quiltView release]; _quiltView = nil; [_images release]; _images = nil; [super dealloc]; } - (void)viewDidLoad { [super viewDidLoad]; _quiltView = [[TMQuiltView alloc] initWithFrame:self.view.bounds]; _quiltView.dataSource = self; _quiltView.delegate = self; [self.view addSubview:_quiltView]; [_quiltView reloadData]; } #pragma mark - QuiltViewControllerDataSource - (NSArray *)images { if (!_images) { NSMutableArray *imageNames = [NSMutableArray array]; for(int i = 0; i < kNumberOfCells; i++) { [imageNames addObject:[NSString stringWithFormat:@"%d.jpeg", i % 10 + 1]]; } _images = [imageNames retain]; } return _images; } - (UIImage *)imageAtIndexPath:(NSIndexPath *)indexPath { return [UIImage imageNamed:[self.images objectAtIndex:indexPath.row]]; } - (NSInteger)quiltViewNumberOfCells:(TMQuiltView *)TMQuiltView { return [self.images count]; } - (TMQuiltViewCell *)quiltView:(TMQuiltView *)quiltView cellAtIndexPath:(NSIndexPath *)indexPath { TMPhotoQuiltViewCell *cell = (TMPhotoQuiltViewCell *)[quiltView dequeueReusableCellWithReuseIdentifier:@"PhotoCell"]; if (!cell) { cell = [[[TMPhotoQuiltViewCell alloc] initWithReuseIdentifier:@"PhotoCell"] autorelease]; } cell.photoView.image = [self imageAtIndexPath:indexPath]; cell.titleLabel.text = [NSString stringWithFormat:@"%d", indexPath.row + 1]; return cell; } #pragma mark - TMQuiltViewDelegate - (NSInteger)quiltViewNumberOfColumns:(TMQuiltView *)quiltView { return 3; } - (CGFloat)quiltView:(TMQuiltView *)quiltView heightForCellAtIndexPath:(NSIndexPath *)indexPath { return [self imageAtIndexPath:indexPath].size.height / [self quiltViewNumberOfColumns:quiltView]; }
QuiltView 瀑布流 (第三方)
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。