ifish/Ifish/UMCommunity/UMCommunitySDK/UMComDataController/InformSystem/UMComNoticeListDataControll...

37 lines
1.1 KiB
Objective-C

//
// UMComNoticeListDataController.m
// UMCommunity
//
// Created by umeng on 16/5/17.
// Copyright © 2016年 Umeng. All rights reserved.
//
#import "UMComNoticeListDataController.h"
#import <UMCommunitySDK/UMComDataTypeDefine.h>
@implementation UMComNoticeListDataController
- (instancetype)initWithCount:(NSInteger)count
{
self = [super initWithRequestType:UMComRequestType_CommunityNotification count:count];
if (self) {
}
return self;
}
+ (UMComNoticeListDataController *)notificatonDataControllerWithCount:(NSInteger)count
{
UMComNoticeListDataController *noticeListDataController = [[UMComNoticeListDataController alloc] initWithCount:count];
return noticeListDataController;
}
- (void)refreshNewDataCompletion:(UMComDataListRequestCompletion)completion
{
__weak typeof(self) weakSelf = self;
[[UMComDataRequestManager defaultManager] fetchMyNotificationWithCount:self.count completion:^(NSDictionary *responseObject, NSError *error) {
[weakSelf handleNewData:responseObject error:error completion:completion];
}];
}
@end