|
//
// myCreateController.h
// ThePaperHD
//
// Created by liyuan on 15/4/21.
// Copyright (c) 2015年 scar1900. All rights reserved.
//
#import "TPHttpController.h"
@protocol createDelegate <NSObject>
-(void) gotoCreate:(TopicInfoBO*)topicInfo tag:(NSString*)tag;
-(void) gotoCreateTopic:(TopicInfoBO *)topicInfo;
@end
@interface myCreateController : TPTableViewController
@property(nonatomic, strong)NSMutableArray *myCreateList;
@property(nonatomic, weak)id<createDelegate> delegate;
@property(nonatomic, strong)NSMutableArray *heightArray;
@property(nonatomic, strong)UIView *noDataBack;
@property(nonatomic, strong)NSString *topic;
- (BOOL)checkIfNoData:(NSArray*)list;
@end
|