// // HomeMemberDetailViewController.h // kneet // // Created by Jason Lee on 6/16/15. // Copyright (c) 2015 ntels. All rights reserved. // #import "JDViewController.h" @class CustomButton; @class CustomLabel; @class HomeMemberModel; @interface HomeMemberDetailViewController : JDViewController #pragma mark - Properties @property (weak, nonatomic) HomeMemberModel *member; @property (weak, nonatomic) IBOutlet CustomButton *btnMemberIcon; @property (weak, nonatomic) IBOutlet CustomLabel *lblMemberRole; @property (weak, nonatomic) IBOutlet CustomLabel *lblMemberRoleDesc; @property (weak, nonatomic) IBOutlet CustomButton *btnAction; @property (weak, nonatomic) IBOutlet CustomButton *btnEdit; @property (weak, nonatomic) IBOutlet CustomLabel *lblMessage; @property (weak, nonatomic) IBOutlet NSLayoutConstraint *constraintLblMessageHeight; @property (weak, nonatomic) IBOutlet NSLayoutConstraint *constraintLblMessageBottom; #pragma mark - Instance Methods - (IBAction)btnModifyTouched:(id)sender; - (IBAction)btnActionTouched:(id)sender; @end