| 12345678910111213141516171819202122232425262728293031 |
- //
- // MemberAddPopupView.h
- // kneet
- //
- // Created by Jason Lee on 6/15/15.
- // Copyright (c) 2015 ntels. All rights reserved.
- //
- @import UIKit;
- #import "CustomAlertView.h"
- @class HomeMemberModel;
- @class CustomTextField2;
- @class CustomRadioButton;
- @interface MemberAddPopupView : CustomAlertView
- @property (weak, nonatomic) NSMutableArray<HomeMemberModel> *inviteList;
- @property (weak, nonatomic) IBOutlet CustomTextField2 *txtEmail;
- @property (weak, nonatomic) IBOutlet CustomRadioButton *rdoPower;
- @property (weak, nonatomic) IBOutlet CustomRadioButton *rdoSimple;
- @property (weak, nonatomic) IBOutlet CustomLabel *lblPowerDesc;
- @property (weak, nonatomic) IBOutlet CustomLabel *lblSimpleDesc;
- - (HomeMemberModel *)newMember;
- - (id)initFromNib;
- @end
|