TaxisView.h 529 Bytes
//
//  TaxisView.h
//  redstar
//
//  Created by admin on 15/11/10.
//  Copyright © 2015年 ZWF. All rights reserved.
//

#import <UIKit/UIKit.h>

@protocol TaxisViewDelegate <NSObject>

- (void)timeChange:(UIButton *)sender;

@end


@interface TaxisView : UIView

@property (nonatomic, strong) UIButton *defaultBtn; // 默认的
@property (nonatomic, strong) UIButton *sequenceBtn; // 顺序
@property (nonatomic, strong) UIButton *changeoverBtn; // 逆序

@property (nonatomic, strong) id <TaxisViewDelegate> delegate;

@end