|
//
// askDetailListController.h
// ThePaperDemo
//
// Created by scar1900 on 14/11/14.
// Copyright (c) 2014年 scar1900. All rights reserved.
//
#import "TPTableViewController.h"
@protocol askDetailListDelegate <NSObject>
- (void)refreshObjInfo:(objInfoBO*)infoBO;
- (void)askPushToLoginView;
- (void)presentAskToUserContent:(commentObjectVO*)commentBO;
- (void)clickToAsk:(UIButton*)btn;
- (void)askListToShare:(UIImage*)img contentBO:(contentObjectBO*) contentBO;
@end
@interface askDetailListController : TPTableViewController
@property(nonatomic, strong)NSString* commmentId;
@property(nonatomic, strong)NSString* answerNums;
@property(nonatomic, weak)id<askDetailListDelegate> delegate;
@end
|