|
//
// myGambitCenterController.h
// ThePaperHD
//
// Created by liyuan on 15/4/17.
// Copyright (c) 2015年 scar1900. All rights reserved.
//
#import "TPHttpController.h"
@protocol myGambitCenterDelegate <NSObject>
-(void) gotoAskVC;
-(void) gotoCreateVC:(TopicInfoBO*)topicInfo tag:(NSString*) tag;
-(void) gotoInfoVc:(TopicInfoBO *) topicInfo;
@end
@interface myGambitCenterController : TPHttpController
@property(nonatomic, weak)id<myGambitCenterDelegate> gambitCenterDelegate;
@property(nonatomic, assign)NSInteger currentIndex;
@end
|