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