|
//
// topicAskCell.h
// ThePaperHD
//
// Created by scar1900 on 15/5/12.
// Copyright (c) 2015年 scar1900. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "AsyncImageView.h"
@protocol topicAskCellDelegate <NSObject>
-(void) topicToOther:(commentObjectVO*) comment;
@end
@interface topicAskCell : UITableViewCell
@property(nonatomic, strong)commentObjectVO *commentBO;
@property(nonatomic, assign)CGFloat padding;
@property(nonatomic, assign)BOOL isCreat;
@property(nonatomic, weak)id<topicAskCellDelegate> topicAskCellDelegate;
@end
|