MemberRolePopupView.h 703 B

123456789101112131415161718192021222324252627282930
  1. //
  2. // MemberRolePopupView.h
  3. // kneet
  4. //
  5. // Created by Jason Lee on 6/16/15.
  6. // Copyright (c) 2015 ntels. All rights reserved.
  7. //
  8. @import UIKit;
  9. #import "CustomAlertView.h"
  10. @class HomeMemberModel;
  11. @class CustomTextField2;
  12. @class CustomRadioButton;
  13. @interface MemberRolePopupView : CustomAlertView
  14. @property (weak, nonatomic) HomeMemberModel *member;
  15. @property (strong, nonatomic) CustomRadioGroup *rgroup;
  16. @property (weak, nonatomic) IBOutlet CustomRadioButton *rdoPower;
  17. @property (weak, nonatomic) IBOutlet CustomRadioButton *rdoSimple;
  18. @property (weak, nonatomic) IBOutlet CustomLabel *lblPowerDesc;
  19. @property (weak, nonatomic) IBOutlet CustomLabel *lblSimpleDesc;
  20. - (id)initFromNib;
  21. @end