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