|
//
// collectTableController.h
// ThePaperBase
//
// Created by Huixin on 15/8/30.
// Copyright (c) 2015年 scar1900. All rights reserved.
//
#import "TPTableViewController.h"
@protocol collectTableDelegate <NSObject>
- (void)collectGoToContent:(listContObjectVO*)data;
- (void)checkDataList;
@end
@interface collectTableController : TPTableViewController
@property(nonatomic, assign)int stateFlag;
@property(nonatomic, strong)NSMutableArray *dataList;
@property(nonatomic, weak)id<collectTableDelegate> delegate;
@end
|