ThreeImageTableViewCell.h 608 Bytes
//
//  ThreeImageTableViewCell.h
//  SCIOLiveCN
//
//  Created by huayu on 17/2/13.
//  Copyright © 2017年 huayu. All rights reserved.
//

#import <UIKit/UIKit.h>

@interface ThreeImageTableViewCell : UITableViewCell
@property(strong, nonatomic) UIView *backGroundView;
@property(strong, nonatomic) UIImageView *leftImage;
@property(strong, nonatomic) UIImageView *midleImage;
@property(strong, nonatomic) UIImageView *rightImage;
@property(strong, nonatomic) UILabel *titleLabel;
@property(strong, nonatomic) UILabel *timeLabel;
@property(strong, nonatomic) UILabel *tagsLabel;
- (void)reSetTagFrame;
@end