zoukankan      html  css  js  c++  java
  • IOS 瀑布流

    #import "ViewController.h"

    @interface ViewController ()<UICollectionViewDataSource,UICollectionViewDelegate>

    @end

    @implementation ViewController

    - (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath

    {

        UICollectionViewCell *cell=[collectionView dequeueReusableCellWithReuseIdentifier:@"cell" forIndexPath:indexPath];

        

        

        cell.backgroundColor=[UIColor colorWithRed:arc4random()%11/10.0 green:arc4random()%11/10.0 blue:arc4random()%11/10.0 alpha:1];

        return cell;

    }

    -(NSInteger)collectionView:(UICollectionView *)collectionView numberOfItemsInSection:(NSInteger)section

    {

        return 25;

    }

    - (void)viewDidLoad {

        UICollectionViewFlowLayout *layout=[[UICollectionViewFlowLayout alloc]init];

        

        layout.scrollDirection=UICollectionViewScrollDirectionHorizontal;

        layout.itemSize=CGSizeMake(30, 30);

        

        

        

        UICollectionView *cv=[[UICollectionView alloc]initWithFrame:CGRectMake(0, 100, 375, 200) collectionViewLayout:layout];

        cv.delegate=self;

        cv.dataSource=self;

        [cv registerClass:[UICollectionViewCell class] forCellWithReuseIdentifier:@"cell"];

        [self.view addSubview:cv];

        

        [super viewDidLoad];

        // Do any additional setup after loading the view, typically from a nib.

    }

  • 相关阅读:
    HTML+CSS知识点总结
    消灭textarea中的神秘空格
    OAuth2.0
    C# task和timer实现定时操作
    C# 多线程task
    EF的使用
    支付宝支付开发
    Basic Auth
    C#中匿名函数、委托delegate和Action、Func、Expression、还有Lambda的关系和区别
    [转]CodeSite使用小结
  • 原文地址:https://www.cnblogs.com/linximu/p/4402628.html
Copyright © 2011-2022 走看看