DurationPopupView.h 566 B

12345678910111213141516171819202122232425262728293031
  1. //
  2. // DurationPopupView.h
  3. // kneet2
  4. //
  5. // Created by Jason Lee on 1/25/16.
  6. // Copyright (c) 2015 ntels. All rights reserved.
  7. //
  8. @import UIKit;
  9. #import "CustomAlertView.h"
  10. #import "JDViewController.h"
  11. @class CustomButton;
  12. @class CustomLabel;
  13. @class DatePickerButton;
  14. @class ItemModel;
  15. @interface DurationPopupView : CustomAlertView
  16. //properties
  17. @property (weak, nonatomic) ItemModel *condition;
  18. @property (weak, nonatomic) IBOutlet DatePickerButton *btnFrom;
  19. @property (weak, nonatomic) IBOutlet DatePickerButton *btnTo;
  20. //methods
  21. - (id)initFromNib;
  22. @end