ChangeIconViewController.h 996 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. //
  2. // ChangeIconViewController.h
  3. // kneet
  4. //
  5. // Created by Jason Lee on 6/16/15.
  6. // Copyright (c) 2015 ntels. All rights reserved.
  7. //
  8. #import "JDViewController.h"
  9. @class MemberIconModel;
  10. @class CustomButton;
  11. @interface ChangeIconViewController : JDViewController
  12. #pragma mark - Properties
  13. @property (strong, nonatomic) MemberIconModel *selectedIcon;
  14. @property (weak, nonatomic) IBOutlet UICollectionView *collectionView;
  15. @property (weak, nonatomic) IBOutlet NSLayoutConstraint *constraintCollectionViewHeight;
  16. @property (weak, nonatomic) IBOutlet CustomButton *btnSave;
  17. @property (weak, nonatomic) IBOutlet CustomButton *btnCancel;
  18. #pragma mark - Instance Methods
  19. @end
  20. @interface MemberIconCell : UICollectionViewCell
  21. @property (weak, nonatomic) IBOutlet CustomButton *btnMemberIcon;
  22. @property (weak, nonatomic) IBOutlet CustomButton *btnCover;
  23. @end
  24. @interface MemberIconeHeaderView : UICollectionReusableView
  25. @property (weak, nonatomic) IBOutlet UILabel *lblHeaderTitle;
  26. @end