TaxisView.h 557 Bytes
Newer Older
1 2 3 4 5 6 7 8 9
//
//  TaxisView.h
//  redstar
//
//  Created by admin on 15/11/10.
//  Copyright © 2015年 ZWF. All rights reserved.
//

#import <UIKit/UIKit.h>
admin's avatar
admin committed
10 11 12 13 14 15 16 17
#define kTAxisBtnTag 500232

@protocol TaxisViewDelegate <NSObject>

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

@end

18 19 20 21 22 23 24

@interface TaxisView : UIView

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

admin's avatar
admin committed
25 26
@property (nonatomic, strong) id <TaxisViewDelegate> delegate;

27
@end