1234567891011121314151617181920 |
- //
- // DetailTransitCommonCell.h
- // FirstLink
- //
- // Created by jack on 15/7/21.
- // Copyright (c) 2015年 FirstLink. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "UITableViewCell+PindanDetail.h"
- @interface DetailTransitCommonCell : FKDetailControllerBaseCell
- @property (nonatomic, strong, readonly) UILabel *leftLabel;
- @property (nonatomic, strong, readonly) UILabel *rightLabel;
- @property (nonatomic, strong, readonly) UIView *topLine; // 默认隐藏
- @property (nonatomic, strong, readonly) UIView *bottomLine;
- @end
|