StartTimeView.h 443 Bytes
Newer Older
陈俊俊's avatar
陈俊俊 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
//
//  StartTimeView.h
//  XFFurit
//
//  Created by陈俊俊 on 15/8/5.
//  Copyright (c) 2015年 Xummer. All rights reserved.
//

#import <UIKit/UIKit.h>

@protocol StartTimeViewDelegate <NSObject>

- (void)cancelTimeView;
- (void)okTimeView:(NSDate *)time;

@end

@interface StartTimeView : UIView
@property (nonatomic,weak)id<StartTimeViewDelegate>delegate;
陈俊俊's avatar
陈俊俊 committed
20
- (instancetype)initWithFrame:(CGRect)frame withDate:(NSDate *)currentDate;
陈俊俊's avatar
陈俊俊 committed
21
@end