中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

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

浦北县| 秭归县| 泰和县| 临清市| 漠河县| 波密县| 灵丘县| 田阳县| 定西市| 海宁市| 揭东县| 丰台区| 汤原县| 达拉特旗| 盐亭县| 邢台县| 金门县| 和平县| 肇庆市| 灵山县| 淮阳县| 广德县| 穆棱市| 水富县| 洪雅县| 泗阳县| 黑山县| 晋城| 彭州市| 阜南县| 清水河县| 宁陕县| 潮州市| 滦平县| 清丰县| 历史| 江永县| 托克逊县| 洪湖市| 桂东县| 且末县|