// // TaxisView.h // redstar // // Created by admin on 15/11/10. // Copyright © 2015年 ZWF. All rights reserved. // #import @protocol TaxisViewDelegate - (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 delegate; @end