1234567891011121314151617 |
- //
- // RangePickerViewController.h
- // FSCalendar
- //
- // Created by dingwenchao on 5/8/16.
- // Copyright © 2016 Wenchao Ding. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- typedef void(^MyBlock)(NSString *startDateStr, NSString *endDateStr, NSString *daysStr);
- @interface RangePickerViewController : UIViewController
- @property(nonatomic,copy)MyBlock selectCheckDateBlock;
- @end
|