BaseCollectionViewController.h 364 B

12345678910111213141516171819
  1. //
  2. // BaseCollectionViewController.h
  3. // CommonLibrary
  4. //
  5. // Created by Alexi on 3/12/14.
  6. // Copyright (c) 2014 CommonLibrary. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface BaseCollectionViewController : UICollectionViewController
  10. - (UICollectionViewLayout *)collectionLayout;
  11. - (NSString *)cellIdentifier;
  12. - (void)configCollectionView;
  13. @end