|
//
// reTopicCell.h
// ThePaperHD
//
// Created by YoungLee on 15/6/9.
// Copyright (c) 2015年 scar1900. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "AsyncImageView.h"
@interface reTopicCell : UITableViewCell
@property(nonatomic, strong)TopicInfoBO *topic;
@property(nonatomic, strong)AsyncImageView *backView;
@property(nonatomic, strong)UIImageView *tempView;
@property(nonatomic, strong)UILabel *type;
@property(nonatomic, strong)UILabel *content;
@property(nonatomic, strong)UIImageView *userImg;
@property(nonatomic, strong)UIImageView *vImg;
@property(nonatomic, strong)UILabel *userName;
@property(nonatomic, strong)UIImageView *praiseImg;
@property(nonatomic, strong)UILabel *praiseNum;
@property(nonatomic, strong)UILabel *status;
@property(nonatomic, strong)UIButton *gotoInfo;
@property(nonatomic, strong)UIView *baiquan;
//@property(nonatomic, strong) UILabel *corLabel;
//@property(nonatomic, strong)UIImageView *corImg;
-(NSString *)statuName:(TopicInfoBO *)topic;
- (void)updateUserHeadImage:(userBO*)user;
@end
|