DateSelectPopupView.h 474 B

1234567891011121314151617181920212223
  1. //
  2. // DateSelectPopupView.h
  3. // OneCable
  4. //
  5. // Created by nComz on 2017. 4. 11..
  6. // Copyright © 2017년 ntels. All rights reserved.
  7. //
  8. @import UIKit;
  9. #import "CustomAlertView.h"
  10. @class CustomTextField;
  11. @interface DateSelectPopupView : CustomAlertView
  12. @property (weak, nonatomic) IBOutlet CustomTextField *txtYear;
  13. @property (weak, nonatomic) IBOutlet CustomTextField *txtMonth;
  14. @property (weak, nonatomic) IBOutlet CustomTextField *txtDay;
  15. - (id)initFromNib;
  16. @end