|
//
// offlineDownLoadCell.h
// ThePaperDemo
//
// Created by scar1900 on 14/11/27.
// Copyright (c) 2014年 scar1900. All rights reserved.
//
#import <UIKit/UIKit.h>
@protocol offlineDownLoadCellDelegate <NSObject>
- (void)updateDataList:(NSMutableDictionary*)newDataDic;
- (void)checkDownloadUrlFaild:(NSMutableDictionary*)dic;
- (void)simpleUpdateDataList:(NSMutableDictionary*)newDataDic;
- (void)noOfflineDataInRemote:(NSMutableDictionary*)newDataDic;
- (void)clickCell:(NSMutableDictionary*)dic;
@end
@interface offlineDownLoadCell : UIView
@property(nonatomic, strong)NSMutableDictionary *dataDic;
@property(nonatomic, assign)BOOL isBeginToDownload;
@property(nonatomic, weak)id<offlineDownLoadCellDelegate> delegate;
@end
|