|
//
// HotAnswerTableViewVC.h
// ThePaperBase
//
// Created by zhousan on 15/8/26.
// Copyright (c) 2015年 scar1900. All rights reserved.
//
#import "TPTableViewController.h"
@protocol hotAnswerTableDelegate <NSObject>
@optional
-(void) hotAnswerTableToShare:(UIImage*)img contentBO:(contentObjectBO*) contentBO;
@end
@interface HotAnswerTableViewVC : TPTableViewController
@property(nonatomic, weak)id<hotAnswerTableDelegate> delegate;
@end
|