InvitationAnswerPopupView.h 521 B

123456789101112131415161718192021222324252627
  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 InvitationAnswerPopupView : CustomAlertView
  14. @property (weak, nonatomic) InvitationModel *invitation;
  15. @property (weak, nonatomic) IBOutlet DatePickerButton *btnDate;
  16. @property (weak, nonatomic, readonly) NSString *selectedDate;
  17. - (id)initFromNib;
  18. @end