CustomDatePopupView.h 511 B

12345678910111213141516171819202122232425
  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 CustomDatePopupView : CustomAlertView
  12. @property (weak, nonatomic) IBOutlet CustomTextField *txtYear;
  13. @property (weak, nonatomic) IBOutlet CustomTextField *txtMonth;
  14. @property (weak, nonatomic) IBOutlet CustomTextField *txtDay;
  15. - (void)setTitle:(NSString *)title;
  16. - (id)initFromNib;
  17. @end