|
//
// SubCellFromAskForNews.h
// ThePaperBase
//
// Created by zhousan on 15/8/6.
// Copyright (c) 2015年 scar1900. All rights reserved.
//
#import "askContentCell.h"
@class SubCellFromAskForNews;
@protocol askForNewsDelegate <NSObject>
- (void)attentionBtnClick:(UIButton *)btn withCell:(SubCellFromAskForNews *)cell;
- (void)replyBtnClick:(commentObjectVO *)comment;
@end
@interface SubCellFromAskForNews : askContentCell
@property (nonatomic, weak) id <askForNewsDelegate> askFroNewDelegate;
@property(nonatomic, strong)NSString *answNums;
@end
|