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

溫馨提示×

溫馨提示×

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

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

UICollectionView cell 的布局

發布時間:2020-07-06 03:21:20 來源:網絡 閱讀:681 作者:緣起愿落 欄目:開發技術



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

滾動方向:
 

flowLayout.scrollDirection = UICollectionViewScrollDirectionHorizontal ;
   

行間距(最小)
  

flowLayout.minimumLineSpacing = 0;
  

列間距(最小)
    flowLayout.minimumInteritemSpacing = 30;
  

item大小
    flowLayout.itemSize = CGSizeMake(40, 30);
   

setcion 的邊距
    flowLayout.sectionInset = UIEdgeInsetsMake(10, 10, 10, 10);
   

header 大小
    flowLayout.headerReferenceSize = CGSizeMake(320, 20);
   

footer大小
    flowLayout.footerReferenceSize = CGSizeMake(320, 20);


重用標志

static NSString *  cellidentifier = @"cell";


注冊重用標識符
    [cView registerClass:[MyCollectionViewCell class] forCellWithReuseIdentifier:cellidentifier];

Cell 重用

- (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath
{
    MyCollectionViewCell * cell  = [collectionView dequeueReusableCellWithReuseIdentifier:cellidentifier forIndexPath:indexPath];
    cell.backgroundColor = [UIColor redColor];
    cell.textLavel.text = [NSString stringWithFormat:@"%ld",(long)indexPath.row];
    
    return cell;
}

向AI問一下細節

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

AI

简阳市| 南城县| 长寿区| 临桂县| 天等县| 佛冈县| 汾阳市| 江永县| 京山县| 石河子市| 昌都县| 扶绥县| 莱阳市| 遂昌县| 夏津县| 庄浪县| 塔河县| 岑溪市| 鹤庆县| 鸡泽县| 响水县| 宾阳县| 利川市| 嘉祥县| 昭觉县| 肃宁县| 沈丘县| 平武县| 西乌| 桐柏县| 温泉县| 三门县| 邯郸市| 喜德县| 宁河县| 海原县| 金华市| 土默特右旗| 莱州市| 贡嘎县| 托克托县|