12345678910111213141516171819202122232425 |
- //
- // LogisticsCell.h
- // FirstLink
- //
- // Created by ascii on 15/5/29.
- // Copyright (c) 2015年 FirstLink. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- typedef NS_ENUM(NSInteger, LogisticsCellStyle) {
- LogisticsCellStyleProgress,
- LogisticsCellStyleSuccess
- };
- @interface LogisticsProgressCell : UITableViewCell
- @property (nonatomic, strong) UILabel *logisticsTextLabel;
- @property (nonatomic, strong) UILabel *logisticsTimeLabel;
- @property (nonatomic, strong) UIView *horizontalLine;
- + (CGFloat)cellHeightWith:(NSString*)title;
- @end
|