|
//
// commentTableController.h
// ThePaperHD
//
// Created by scar1900 on 15/1/16.
// Copyright (c) 2015年 scar1900. All rights reserved.
//
#import "TPTableViewController.h"
@protocol commentTableDelegate <NSObject>
- (void)endCommentRefresh:(NSString*)commentRecord;
@end
@interface commentTableController : TPTableViewController
@property(nonatomic, strong)NSMutableArray *dataList;
@property(nonatomic, strong)NSString *nodeId;
@property(nonatomic, weak)id<commentTableDelegate> delegate;
@property(nonatomic, strong)NSString *commentOT;
@end
|