你好,歡迎來到IOS教程網

 Ios教程網 >> IOS使用技巧 >> IOS技巧綜合 >> UICollectionViewController的創建

UICollectionViewController的創建

編輯:IOS技巧綜合
[摘要]本文是對UICollectionViewController的創建的講解,對學習IOS蘋果軟件開發有所幫助,與大家分享。

1. 在開發collection view的時候遇到的問題,因為頁面在storyboard中,所以直接在storyboard裡設置它的layout,和cell的size等屬性。

2. 另外,UICollectionViewController控制器本來有四個init方法:

- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil {}

- (id)initWithCollectionViewLayout:(UICollectionViewLayout *)layout {}

- (id)initWithCoder:(NSCoder *)aDecoder {}

- (id)init {}

但是由於是在storyboard裡直接定義的控制器,所以代碼裡只有initWithCoder:(NSCoder *)aDecoder 方法被調用,另外3個沒有被調用。

3. 給它注冊了定義的標題欄類MCMonthHeaderView, 沒有使用xib文件.

[self.collectionView registerClass:[MCMonthHeaderView class] forSupplementaryViewOfKind:UICollectionElementKindSectionHeader withReuseIdentifier:@"monthHeader"];

在MCMonthHeaderView類繼承了UICollectionViewReusableView類,它的初始化方法也有三個,

- (id)initWithFrame:(CGRect)frame{}

- (id)initWithCoder:(NSCoder *)aDecoder{}

- (id)init{}

發現只有initWithFrame:方法是被調用的,其他兩個方法不會被調用.

  1. 上一頁:
  2. 下一頁:
蘋果刷機越獄教程| IOS教程問題解答| IOS技巧綜合| IOS7技巧| IOS8教程
Copyright © Ios教程網 All Rights Reserved