| 12345678910111213141516171819202122232425 |
- //
- // DeleteAccountPopupView.h
- // kneet
- //
- // Created by Jason Lee on 5/12/15.
- // Copyright (c) 2015 ntels. All rights reserved.
- //
- @import UIKit;
- #import "CustomAlertView.h"
- @class CustomLabel;
- @interface DeleteAccountPopupView : CustomAlertView
- @property (strong, nonatomic) NSString *passwd;
- @property (weak, nonatomic) IBOutlet CustomLabel *lblWarning;
- @property (weak, nonatomic) IBOutlet CustomLabel *lblDesc1;
- @property (weak, nonatomic) IBOutlet CustomLabel *lblDesc2;
- @property (weak, nonatomic) IBOutlet CustomLabel *lblDesc3;
- - (id)initFromNib;
- @end
|