| 1234567891011121314151617181920212223242526272829303132 |
- //
- // 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 CustomDatePicker : UIDatePicker {
- BOOL _changed;
- }
- @end
- @interface InvitationAnswerPopupView : CustomAlertView
- @property (weak, nonatomic) InvitationModel *invitation;
- @property (weak, nonatomic) IBOutlet CustomDatePicker *datePicker;
- @property (weak, nonatomic, readonly) NSString *selectedDate;
- - (id)initFromNib;
- @end
|