| 123456789101112131415161718192021222324252627282930 |
- //
- // MemberRolePopupView.h
- // kneet
- //
- // Created by Jason Lee on 6/16/15.
- // Copyright (c) 2015 ntels. All rights reserved.
- //
- @import UIKit;
- #import "CustomAlertView.h"
- @class HomeMemberModel;
- @class CustomTextField2;
- @class CustomRadioButton;
- @interface MemberRolePopupView : CustomAlertView
- @property (weak, nonatomic) HomeMemberModel *member;
- @property (strong, nonatomic) CustomRadioGroup *rgroup;
- @property (weak, nonatomic) IBOutlet CustomRadioButton *rdoPower;
- @property (weak, nonatomic) IBOutlet CustomRadioButton *rdoSimple;
- @property (weak, nonatomic) IBOutlet CustomLabel *lblPowerDesc;
- @property (weak, nonatomic) IBOutlet CustomLabel *lblSimpleDesc;
- - (id)initFromNib;
- @end
|