InvitationAnswerPopupView.h 596 B

1234567891011121314151617181920212223242526272829303132
  1. //
  2. // InvitationAnswerPopupView.h
  3. // kneet
  4. //
  5. // Created by Jason Lee on 6/15/15.
  6. // Copyright (c) 2015 ntels. All rights reserved.
  7. //
  8. @import UIKit;
  9. #import "CustomAlertView.h"
  10. @class InvitationModel;
  11. @class CustomLabel;
  12. @class DatePickerButton;
  13. @interface CustomDatePicker : UIDatePicker {
  14. BOOL _changed;
  15. }
  16. @end
  17. @interface InvitationAnswerPopupView : CustomAlertView
  18. @property (weak, nonatomic) InvitationModel *invitation;
  19. @property (weak, nonatomic) IBOutlet CustomDatePicker *datePicker;
  20. @property (weak, nonatomic, readonly) NSString *selectedDate;
  21. - (id)initFromNib;
  22. @end