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