HomeMemberDetailViewController.h 1.0 KB

1234567891011121314151617181920212223242526272829303132333435
  1. //
  2. // HomeMemberDetailViewController.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 CustomButton;
  10. @class CustomLabel;
  11. @class HomeMemberModel;
  12. @interface HomeMemberDetailViewController : JDViewController
  13. #pragma mark - Properties
  14. @property (weak, nonatomic) HomeMemberModel *member;
  15. @property (weak, nonatomic) IBOutlet CustomButton *btnMemberIcon;
  16. @property (weak, nonatomic) IBOutlet CustomLabel *lblMemberRole;
  17. @property (weak, nonatomic) IBOutlet CustomLabel *lblMemberRoleDesc;
  18. @property (weak, nonatomic) IBOutlet CustomButton *btnAction;
  19. @property (weak, nonatomic) IBOutlet CustomButton *btnEdit;
  20. @property (weak, nonatomic) IBOutlet CustomLabel *lblMessage;
  21. @property (weak, nonatomic) IBOutlet NSLayoutConstraint *constraintLblMessageHeight;
  22. @property (weak, nonatomic) IBOutlet NSLayoutConstraint *constraintLblMessageBottom;
  23. #pragma mark - Instance Methods
  24. - (IBAction)btnModifyTouched:(id)sender;
  25. - (IBAction)btnActionTouched:(id)sender;
  26. @end