New file |
| | |
| | | // |
| | | // DynamicService.h |
| | | // screendisplay |
| | | // |
| | | // Created by 单军华 on 2018/7/9. |
| | | // Copyright © 2018年 单军华. All rights reserved. |
| | | // |
| | | |
| | | #import "BaseHTTPRequest.h" |
| | | #import "DynamicModel.h" |
| | | |
| | | @interface DynamicService : BaseHTTPRequest |
| | | |
| | | /** digest */ |
| | | @property (nonatomic, strong) NSMutableArray<DynamicModel *> *dynamicViewModels; |
| | | |
| | | #pragma mark - 获取详情列表 |
| | | /** 获取详情列表*/ |
| | | - (NSURLSessionTask *)getDynamicListWithParameters:(id)parameters dataCount:(int)getCount completion:(void(^)(NSString *desc,int code))completion; |
| | | |
| | | |
| | | |
| | | @end |