|
//
// myFocusCell.h
// ThePaperBase
//
// Created by YoungLee on 15/8/19.
// Copyright (c) 2015年 scar1900. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "TPEmojiLabel.h"
@protocol myFocusDelegate <NSObject>
-(void) pushContent:(commentObjectVO*)comment;
-(void) pushToAskInfo:(commentObjectVO*)comment index:(NSIndexPath *) index;
-(void) pushToUserInfo:(commentObjectVO*)comment;
@end
@interface myFocusCell : UITableViewCell
@property(nonatomic, strong)UIView *backView;
@property(nonatomic, strong)UILabel *topLabel;
@property(nonatomic, strong)UIView *line;
@property(nonatomic, strong)UILabel *name;
@property(nonatomic, strong)RTLabel *answerNum;
@property(nonatomic, strong)TPEmojiLabel *content;
@property(nonatomic, strong)UIButton *topBtn;
@property(nonatomic, strong)UIButton *contentBtn;
@property(nonatomic, strong) UIButton *nameButton;
@property(nonatomic, strong)commentObjectVO *commentBO;
@property(nonatomic, strong)UIView *shadowLine;
@property(nonatomic, weak) id<myFocusDelegate> delegate;
@property(nonatomic, strong)NSIndexPath *indexPath;
- (void)remakeSubViews;
@end
|