|
//
// hotAskMoreFootCell.h
// ThePaperHD
//
// Created by scar1900 on 15/1/28.
// Copyright (c) 2015年 scar1900. All rights reserved.
//
#import <UIKit/UIKit.h>
@protocol askFootMoreDelegate <NSObject>
@optional
- (void)clickAskMoreButton:(commentObjectVO*)commentBO;
@end
@interface hotAskMoreFootCell : UITableViewCell
@property(nonatomic, strong)commentObjectVO *commentBO;
@property(nonatomic, weak)id<askFootMoreDelegate> delegate;
@end
|