|
//
// topicModel.h
// ThePaperBase
//
// Created by YoungLee on 15/8/26.
// Copyright (c) 2015年 scar1900. All rights reserved.
//
#import <Foundation/Foundation.h>
@protocol topicModelDelegate <NSObject>
@optional
-(void) returnMyAttenList:(NSMutableArray *)data url:(NSString*)url;
-(void) returnMyAttenNextList:(NSMutableArray *)data url:(NSString*)url;
-(void) returnMyCreateList:(NSMutableArray *)data url:(NSString*)url;
-(void) returnMYCreateNextUrl:(NSMutableArray *)data url:(NSString*)url;
-(void) returnNoData;
@end
@interface topicModel : NSObject
@property(nonatomic, strong)id<topicModelDelegate> delegate;
@property(nonatomic, strong)NSMutableDictionary *myAttenDic;
@property(nonatomic, strong)NSString *myAttenNextUrl;
@property(nonatomic, strong)NSMutableDictionary *myCreateDic;
@property(nonatomic, strong)NSString *myCreateNextUrl;
@end
|