91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

QuiltView 瀑布流 (第三方)

發布時間:2020-07-08 20:30:48 來源:網絡 閱讀:329 作者:緣起愿落 欄目:開發技術


使用第三方 : 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 *p_w_picpaths;
@end


.m 文件

主要代碼:

#define kNumberOfCells           50


- (void)dealloc {
    [_quiltView release];
    _quiltView = nil;
    
    [_p_w_picpaths release];
    _p_w_picpaths = 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 *)p_w_picpaths {
    if (!_p_w_picpaths) {
        NSMutableArray *p_w_picpathNames = [NSMutableArray array];
        for(int i = 0; i < kNumberOfCells; i++) {
            [p_w_picpathNames addObject:[NSString stringWithFormat:@"%d.jpeg", i % 10 + 1]];
        }
        _p_w_picpaths = [p_w_picpathNames retain];
    }
    return _p_w_picpaths;
}

- (UIImage *)p_w_picpathAtIndexPath:(NSIndexPath *)indexPath {
    return [UIImage p_w_picpathNamed:[self.p_w_picpaths objectAtIndex:indexPath.row]];
}

- (NSInteger)quiltViewNumberOfCells:(TMQuiltView *)TMQuiltView {
    return [self.p_w_picpaths count];
}

- (TMQuiltViewCell *)quiltView:(TMQuiltView *)quiltView cellAtIndexPath:(NSIndexPath *)indexPath {
    TMPhotoQuiltViewCell *cell = (TMPhotoQuiltViewCell *)[quiltView dequeueReusableCellWithReuseIdentifier:@"PhotoCell"];
    if (!cell) {
        cell = [[[TMPhotoQuiltViewCell alloc] initWithReuseIdentifier:@"PhotoCell"] autorelease];
    }
    
    cell.photoView.p_w_picpath = [self p_w_picpathAtIndexPath: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 p_w_picpathAtIndexPath:indexPath].size.height / [self quiltViewNumberOfColumns:quiltView];
}


附件:http://down.51cto.com/data/2364898
向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

岳阳县| 望城县| 垦利县| 刚察县| 辽源市| 高平市| 河东区| 万山特区| 百色市| 栾川县| 长垣县| 永年县| 湘潭市| 西乌| 兰西县| 祁东县| 林周县| 康保县| 兴和县| 慈溪市| 绥滨县| 山东省| 政和县| 横峰县| 行唐县| 景东| 榆中县| 临安市| 徐汇区| 石家庄市| 太白县| 海南省| 方正县| 社会| 沅江市| 邢台市| 商洛市| 全南县| 芒康县| 滦平县| 宁德市|