| 12345678910111213141516171819202122232425262728293031 |
- //
- // DurationPopupView.h
- // kneet2
- //
- // Created by Jason Lee on 1/25/16.
- // Copyright (c) 2015 ntels. All rights reserved.
- //
- @import UIKit;
- #import "CustomAlertView.h"
- #import "JDViewController.h"
- @class CustomButton;
- @class CustomLabel;
- @class DatePickerButton;
- @class ItemModel;
- @interface DurationPopupView : CustomAlertView
- //properties
- @property (weak, nonatomic) ItemModel *condition;
- @property (weak, nonatomic) IBOutlet DatePickerButton *btnFrom;
- @property (weak, nonatomic) IBOutlet DatePickerButton *btnTo;
- //methods
- - (id)initFromNib;
- @end
|