No Description

SubmitSelectTransportView.h 610B

12345678910111213141516171819
  1. //
  2. // SubmitChangeTransportView.h
  3. // FirstLink
  4. //
  5. // Created by jack on 15/6/20.
  6. // Copyright (c) 2015年 FirstLink. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface SubmitSelectTransportView : UIView
  10. @property (nonatomic, strong, readonly) UILabel *carriageInLabel; // 国内
  11. @property (nonatomic, strong, readonly) UILabel *takeSelfLabel; // 自提
  12. @property (nonatomic, copy) void(^confirmAction)(SubmitSelectTransportView *transportView);
  13. @property (nonatomic, assign) NSInteger selectedIndex;
  14. - (void)showInView:(UIView *)view animated:(BOOL)animated;
  15. - (void)dismissAnimation;
  16. @end