|
//
// specialTopicViewModel.h
// ThePaperBase
//
// Created by scar1900 on 15/7/22.
// Copyright (c) 2015年 scar1900. All rights reserved.
// 专题viewmodel
#import <Foundation/Foundation.h>
@protocol specialTopicDelegate <NSObject>
@optional
- (void)returnNodeList:(NSMutableArray*)nodeArray
contentList:(NSMutableArray*)contentArray
specialBO:(specialObjectBO*)specialData;
- (void)contentHaveOffline; //文章已下线
- (void)remoteFail:(BOOL)isTimeOut; //网络出错
@end
@interface specialTopicViewModel : NSObject
@property(nonatomic, strong)NSString *nodeId;
@property(nonatomic, weak)id<specialTopicDelegate> delegate;
- (void)remoteAction;
- (void)checkContentDataInCoreData:(NSString*)nodeIDstr table:(UITableView*)table;
@end
|