| 123456789101112131415161718192021222324252627 |
- //
- // 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 DatePickerButton *btnDate;
- @property (weak, nonatomic, readonly) NSString *selectedDate;
- - (id)initFromNib;
- @end
|