| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- //
- // HomeMemberViewController.h
- // kneet
- //
- // Created by Jason Lee on 6/15/15.
- // Copyright (c) 2015 ntels. All rights reserved.
- //
- #import "JDViewController.h"
- @interface HomeMemberViewController : JDViewController
- #pragma mark - Properties
- @property (weak, nonatomic) IBOutlet UICollectionView *collectionView;
- @property (weak, nonatomic) IBOutlet UIView *editModeView;
- @property (weak, nonatomic) IBOutlet NSLayoutConstraint *constraintEditModeRight;
- #pragma mark - Instance Methods
- - (void)refreshHomeMemberList;
- - (IBAction)btnOptionTouched:(id)sender;
- - (IBAction)btnDeleteOnEditModeTouched:(id)sender;
- - (IBAction)btnCloseOnEditModeTouched:(id)sender;
- @end
- @class CustomButton;
- @class CustomLabel;
- @class CustomImageView;
- @class CustomCheckBox;
- @interface HomeMemberCollectionCell : UICollectionViewCell
- @property (weak, nonatomic) IBOutlet CustomImageView *imgvMemberIcon;
- @property (weak, nonatomic) IBOutlet CustomLabel *lblNickname;
- @property (weak, nonatomic) IBOutlet CustomLabel *lblStatus;
- @property (weak, nonatomic) IBOutlet CustomCheckBox *chkSelect;
- @end
- @interface HomeMemberAddCollectionCell : UICollectionViewCell
- @property (weak, nonatomic) IBOutlet CustomButton *btnAdd;
- @end
- @interface HomeMemberCollectionFooterView : UICollectionReusableView
- @property (weak, nonatomic) IBOutlet CustomButton *btnAdd;
- @end
|