| 1234567891011121314151617181920212223242526272829303132333435363738 |
- //
- // 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;
- #pragma mark - Instance Methods
- - (void)refreshHomeMemberList;
- - (IBAction)btnOptionTouched:(id)sender;
- @end
- @class CustomButton;
- @class CustomLabel;
- @class CustomImageView;
- @interface HomeMemberCollectionCell : UICollectionViewCell
- @property (weak, nonatomic) IBOutlet CustomImageView *imgvMemberIcon;
- @property (weak, nonatomic) IBOutlet CustomLabel *lblNickname;
- @property (weak, nonatomic) IBOutlet CustomLabel *lblStatus;
- @end
- @interface HomeMemberCollectionFooterView : UICollectionReusableView
- @property (weak, nonatomic) IBOutlet UILabel *lblHeaderTitle;
- @end
|