| 123456789101112131415161718192021222324252627282930 |
- //
- // DateSelectPopupView.h
- // OneCable
- //
- // Created by nComz on 2017. 4. 11..
- // Copyright © 2017년 ntels. All rights reserved.
- //
- @import UIKit;
- #import "CustomAlertView.h"
- #import "CustomTextField.h"
- @class CustomTextField;
- @interface CustomDatePopupView : CustomAlertView
- @property (weak, nonatomic) IBOutlet CustomTextField *txtYear;
- @property (weak, nonatomic) IBOutlet CustomTextField *txtMonth;
- @property (weak, nonatomic) IBOutlet CustomTextField *txtDay;
- - (void)setTitle:(NSString *)title;
- - (id)initFromNib;
- - (id)initWithTitle:(NSString *)title;
- -(NSString *)getFormatDate;
- -(NSString *)getInputDate;
- @end
|