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:方法是被調用的,其他兩個方法不會被調用.