亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

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

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

微博| 大名县| 西充县| 金山区| 秭归县| 酉阳| 临漳县| 天气| 平利县| 北碚区| 平武县| 南乐县| 平顺县| 乐安县| 白沙| 汾西县| 德格县| 循化| 宁国市| 定安县| 文成县| 天长市| 娄底市| 上林县| 邛崃市| 新邵县| 监利县| 浦城县| 常熟市| 满洲里市| 兴和县| 积石山| 榆树市| 临漳县| 五家渠市| 屏东县| 德昌县| 茶陵县| 根河市| 惠州市| 吉安县|