|
//
// channelListCell.h
// ThePaperDemo
//
// Created by Scar on 14-9-4.
// Copyright (c) 2014年 scar1900. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "AsyncImageView.h"
#import "TPLabel.h"
#import "channelListMethodModel.h"
@protocol channelListDelegate <NSObject>
@optional
- (void)channelGotoHotTopic:(TopicInfoBO *)topicInfoBO;
- (void)channelGotoHotAsk:(commentObjectVO *)commentBO;
@end
@interface channelListCell : UITableViewCell
@property(nonatomic, strong)listContObjectVO *dataBO;
@property(nonatomic, strong)UIView *backView;
@property(nonatomic, assign)CGFloat titleHeight;
@property(nonatomic, assign)CGFloat hotInfoHeight;
@property(nonatomic, strong)AsyncImageView *imgView;
@property(nonatomic, strong)UILabel *titleLabel;
@property(nonatomic, strong)UILabel *timeLabel;
@property(nonatomic, strong)UILabel *commentLabel;
@property(nonatomic, strong)TPLabel *tpLabel;
@property(nonatomic, strong)UILabel *sortLabel;
@property(nonatomic, strong)UIImageView *timeImg;
@property(nonatomic, strong)UIImageView *commentImg;
@property(nonatomic, strong)UIButton *hotInfoBtn; //热门推荐位
@property(nonatomic, strong)UILabel *hotInfoLabel;
@property(nonatomic, strong)UIImageView *bracketsImageView;
@property(nonatomic, strong)UILabel *bracketsLabel;
@property(nonatomic, strong)UIImageView *videoView;
@property(nonatomic, strong)UIImageView *videoImg;
@property(nonatomic, strong)UILabel *videoDurationLabel;
@property(nonatomic, strong)UIImageView *imageBgView;
@property(nonatomic, strong)UIImageView *imageSetImg;
@property(nonatomic, strong)UILabel *imgeSetNumLabel;
@property(nonatomic, assign)id hotInfo;
@property(nonatomic, strong)NSString *imagePath;
@property(nonatomic, weak)id<channelListDelegate> delegate;
@property(nonatomic, strong)UIView *hotInfoLine;
@end
|