|
//
// readHistoryTableController.h
// ThePaperBase
//
// Created by Huixin on 15/9/29.
// Copyright © 2015年 scar1900. All rights reserved.
//
#import "TPTableViewController.h"
@protocol readHistoryTableDelegate <NSObject>
- (void)readHistoryGoToContent:(listContObjectVO*)data;
- (void)checkDataList;
@end
@interface readHistoryTableController : TPTableViewController
@property(nonatomic, strong)NSMutableArray *dataList;
@property(nonatomic, weak)id<readHistoryTableDelegate> delegate;
@end
|