PickTimeV.h 385 B

12345678910111213141516171819202122
  1. //
  2. // PickTimeV.h
  3. // jiaPeiC
  4. //
  5. // Created by apple on 15/12/24.
  6. // Copyright © 2015年 JCZ. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface PickTimeV : UIView
  10. {
  11. MyBlockType clkBlock;
  12. }
  13. //目前调用的有 PostPlanVC、AddRecordVC 够多就做个枚举类型
  14. @property (nonatomic, copy) NSString *whichVC;
  15. -(void)complete:(MyBlockType)comp;
  16. -(void)show;
  17. @end