|
//
// TopicCreatAskCellTableViewCell.h
// ThePaperBase
//
// Created by zhousan on 15/8/24.
// Copyright (c) 2015年 scar1900. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "SubCellFromAskContentCell.h"
@protocol topicReplyDelegate <NSObject>
- (void)replyButtonClick:(UIButton *)btn WithCell:(SubCellFromAskContentCell *)cell;
@end
@interface TopicCreatAskCellTableViewCell : SubCellFromAskContentCell
@property(nonatomic, strong) id <topicReplyDelegate> delegate;
@property(nonatomic, assign) BOOL isAnswer;
@property(nonatomic, copy) NSString *sortIndex;
@end
|