// // InvitationAnswerPopupView.h // kneet // // Created by Jason Lee on 6/15/15. // Copyright (c) 2015 ntels. All rights reserved. // @import UIKit; #import "CustomAlertView.h" @class InvitationModel; @class CustomLabel; @class DatePickerButton; @interface InvitationAnswerPopupView : CustomAlertView @property (weak, nonatomic) InvitationModel *invitation; @property (weak, nonatomic) IBOutlet CustomLabel *lblDesc; @property (weak, nonatomic) IBOutlet CustomLabel *lblQuiz; @property (weak, nonatomic) IBOutlet DatePickerButton *btnDate; @property (weak, nonatomic, readonly) NSString *selectedDate; - (id)initFromNib; @end