12345678910111213141516171819202122 |
- //
- // DetailSourceCell.h
- // FirstLink
- //
- // Created by jack on 15/8/25.
- // Copyright (c) 2015年 FirstLink. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "UITableViewCell+PindanDetail.h"
- @interface DetailSourceCell : UITableViewCell
- @property (nonatomic, strong) UILabel *titleLabel;
- @property (nonatomic, strong) UILabel *rightLabel;
- @property (nonatomic, strong) UIImageView *linkImgView;
- @property (nonatomic, strong) UIView *topLine;
- @property (nonatomic, strong) UIView *bottomLine;
- @end
|