| 1234567891011121314151617181920212223 |
- //
- // PwdPopupView.h
- // kneet2
- //
- // Created by Jason Lee on 10/12/15.
- // Copyright (c) 2015 ntels. All rights reserved.
- //
- @import UIKit;
- #import "CustomAlertView.h"
- @class CustomTextField;
- @interface PwdPopupView : CustomAlertView
- @property (weak, nonatomic) IBOutlet CustomLabel *lblDesc2;
- @property (weak, nonatomic) IBOutlet CustomTextField *txtPwd;
- @property (weak, nonatomic) IBOutlet CustomTextField *txtPwdConfirm;
- - (id)initFromNib;
- @end
|