BDView.h 495 B

123456789101112131415161718192021
  1. //
  2. // BDView.h
  3. // BuguLive
  4. //
  5. // Created by fanwe2014 on 16/9/8.
  6. // Copyright © 2016年 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface BDView : UIView
  10. @property (weak, nonatomic) IBOutlet UIView *topBackView;
  11. @property (nonatomic, strong) UIDatePicker *datePicker;
  12. @property (weak, nonatomic) IBOutlet UILabel *timeLabel;
  13. @property (nonatomic, copy) void (^BDViewBlock)(int tagIndex); //0取消 1确定
  14. - (void)creatMinTime:(NSString *)string;
  15. @end