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

溫馨提示×

溫馨提示×

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

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

UICollectionView Header 和Footer

發布時間:2020-08-03 11:02:17 來源:網絡 閱讀:1870 作者:緣起愿落 欄目:開發技術

@interface FooterView : UICollectionReusableView

Footer  和 Header  基于  UICollectionReusableView


重用標識


static NSString * headeridentifier = @"header";
static NSString * footeridentifier = @"FOOTER";


  注冊重用標識符

     第一個參數 : 返回的view類型
     第二個參數: 設置view的種類 (header , footer)
     第三個參數: 設置重用標識符
    
    [cView registerClass:[HeaderView class] forSupplementaryViewOfKind:UICollectionElementKindSectionHeader withReuseIdentifier:headeridentifier];
   

    [cView registerClass:[FooterView class] forSupplementaryViewOfKind:UICollectionElementKindSectionFooter withReuseIdentifier:footeridentifier];



Header 和 Footer 重用


- (UICollectionReusableView *)collectionView:(UICollectionView *)collectionView viewForSupplementaryElementOfKind:(NSString *)kind atIndexPath:(NSIndexPath *)indexPath
{
  if ([kind isEqualToString:UICollectionElementKindSectionHeader]) {
    
    HeaderView * headerView = [collectionView dequeueReusableSupplementaryViewOfKind:kind withReuseIdentifier:headeridentifier forIndexPath:indexPath];
    headerView.backgroundColor = [UIColor whiteColor];
    headerView.label.text = @"header";
    headerView.label.textAlignment = NSTextAlignmentCenter;
    
     return headerView;
  }
 
    
    FooterView * footerView = [collectionView dequeueReusableSupplementaryViewOfKind:kind withReuseIdentifier:footeridentifier forIndexPath:indexPath];
    footerView.backgroundColor = [UIColor whiteColor];
    footerView.label.text = @"footer";
    footerView.label.textAlignment = NSTextAlignmentCenter;
    
    
    return footerView;
    
}

向AI問一下細節

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

AI

通城县| 柳江县| 探索| 安远县| 阳春市| 长沙县| 宜阳县| 木兰县| 德昌县| 昆明市| 南投县| 左权县| 买车| 武夷山市| 阳城县| 阳山县| 集贤县| 琼结县| 呼伦贝尔市| 黑水县| 屏南县| 临西县| 赤水市| 江山市| 普洱| 北流市| 晋江市| 任丘市| 平凉市| 云南省| 五台县| 哈巴河县| 禄丰县| 辽中县| 建宁县| 西盟| 高阳县| 洪洞县| 平乐县| 宜阳县| 景谷|