123456789101112131415161718192021222324 |
- //
- // PickTimeV.h
- // jiaPeiC
- //
- // Created by apple on 15/12/24.
- // Copyright © 2015年 JCZ. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface PickTimeV : UIView
- {
- MyBlockType clkBlock;
- }
- //目前调用的有 AddRecordVC 够多就做个枚举类型
- @property (nonatomic, copy) NSString *whichVC;
- @property (nonatomic, copy) NSString *KM;
- -(void)complete:(MyBlockType)comp;
- -(void)show;
- @end
|