MoreSpecialViewController.m
19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
//
// MoreSpecialViewController.m
// SCIOLiveCN
//
// Created by huayu on 17/2/17.
// Copyright © 2017年 huayu. All rights reserved.
//
#import "MoreSpecialViewController.h"
#import "OldVideoDetailViewController.h"
#import "OldArticleDetailViewController.h"
#import "BigImageTableViewCell.h"
#import "LeftImageTableViewCell.h"
#import "ThreeImageTableViewCell.h"
@interface MoreSpecialViewController ()<UITableViewDataSource,UITableViewDelegate> {
NSDictionary *_dictionary;
}
@property (nonatomic, strong) UITableView *tableView;
@property (nonatomic, strong) NSMutableArray *dataArray;
@property (nonatomic, assign) NSInteger pageNumber;
@property (nonatomic, strong) UILabel *errorLabe;
@property (nonatomic, assign) BOOL isAll;
@end
@implementation MoreSpecialViewController
-(id)initWithDictionary:(NSDictionary*)dictionary{
if (self = [super init]) {
_dictionary = [NSDictionary dictionaryWithDictionary:dictionary];
}
return self;
}
//- (void)setNaviation{
// self.navigationController.navigationBar.translucent = NO;
// [self.navigationController.navigationBar setBarTintColor:HEXCOLOR(0x195ac9)];
// [self.navigationController.navigationBar setTitleTextAttributes:[NSDictionary dictionaryWithObjectsAndKeys:[UIFont systemFontOfSize:20],NSFontAttributeName,[UIColor whiteColor],NSForegroundColorAttributeName,nil]];
// UIButton *leftButton = [UIButton buttonWithType:UIButtonTypeCustom];
// [leftButton addTarget:self.navigationController action:@selector(popToRootViewControllerAnimated:) forControlEvents:UIControlEventTouchUpInside];
// [leftButton setImage:[UIImage imageNamed:@"cnlive_white_back"] forState:UIControlStateNormal];
// [leftButton setFrame:CGRectMake(0, 0, 44, 44)];
// self.navigationItem.leftBarButtonItem = [[UIBarButtonItem alloc] initWithCustomView:leftButton];
// self.navigationItem.hidesBackButton = YES;
// self.navigationItem.backBarButtonItem = [[UIBarButtonItem alloc] initWithTitle:@"" style:UIBarButtonItemStylePlain target:nil action:nil];
//}
#pragma mark - UI
- (void)setUpNavigationBar{
self.navigationController.navigationBar.barTintColor = Color_Blue;
self.navigationController.navigationBar.titleTextAttributes = @{NSForegroundColorAttributeName:[UIColor whiteColor], NSFontAttributeName:[UIFont systemFontOfSize:18]};
//左
UIButton *headerButton = [[UIButton alloc] initWithFrame:CGRectMake(0, 0, 20, 44)];
headerButton.layer.cornerRadius = 2.0;
headerButton.layer.masksToBounds = true;
[headerButton setImage:[UIImage imageNamed:@"cnlive_white_back"] forState:UIControlStateNormal];
[headerButton addTarget:self action:@selector(goBack) forControlEvents:UIControlEventTouchUpInside];
self.navigationItem.leftBarButtonItem = [[UIBarButtonItem alloc] initWithCustomView:headerButton];
self.navigationItem.title = _dictionary[@"cmsColumnName"];
}
- (void)viewDidLoad {
[super viewDidLoad];
self.view.backgroundColor = HEXCOLOR(0xeaeded);
[self setUpNavigationBar];
self.tableView = [[UITableView alloc] initWithFrame:CGRectMake(0, 0, MainScreenWidth, MainScreenHeight - NavBarHeight) style:UITableViewStyleGrouped];
self.tableView.delegate = self;
self.tableView.dataSource = self;
self.tableView.separatorStyle = UITableViewCellSeparatorStyleNone;
self.tableView.backgroundColor = HEXCOLOR(0xeaeded);
self.tableView.backgroundView = nil;
[self.view addSubview:self.tableView];
// 设置上拉加载
MJRefreshGifHeader *header = [MJRefreshGifHeader headerWithRefreshingTarget:self refreshingAction:@selector(loadData)];
NSMutableArray *refreshingImages = [NSMutableArray array];
for (NSUInteger i = 1; i < 4; i++) {
UIImage *image = [UIImage imageNamed:[NSString stringWithFormat:@"refresh_animation%lu", (unsigned long)i]];
[refreshingImages addObject:image];
}
[header setImages:refreshingImages forState:MJRefreshStateRefreshing];
header.lastUpdatedTimeLabel.hidden = YES;
header.stateLabel.hidden = YES;
// 设置下拉刷新
MJRefreshAutoNormalFooter *footer = [MJRefreshAutoNormalFooter footerWithRefreshingTarget:self refreshingAction:@selector(loadMoreData)];
[footer setTitle:CustomStr(@"RefreshBackFooterIdleText") forState:MJRefreshStateIdle];
[footer setTitle:CustomStr(@"RefreshBackFooterPullingText") forState:MJRefreshStatePulling];
[footer setTitle:CustomStr(@"RefreshBackFooterRefreshingText") forState:MJRefreshStateRefreshing];
[footer setTitle:CustomStr(@"RefreshBackFooterNoMoreDataText") forState:MJRefreshStateNoMoreData];
self.tableView.mj_header = header;
self.tableView.mj_footer = footer;
self.tableView.mj_footer.hidden = YES;
// 设置没有数据
self.errorLabe = [[UILabel alloc] initWithFrame:CGRectMake(0, 0, MainScreenWidth, MainScreenHeight - 64)];
self.errorLabe.textAlignment = NSTextAlignmentCenter;
[self.view addSubview:self.errorLabe];
self.errorLabe.text = @"没有数据";
self.errorLabe.hidden = YES;
self.dataArray = [[NSMutableArray alloc] init];
if ([self.tableView respondsToSelector:@selector(setSeparatorInset:)]) {
[self.tableView setSeparatorInset:UIEdgeInsetsZero];
}
}
- (void)viewWillAppear:(BOOL)animated{
[super viewWillAppear:animated];
if (0 == self.dataArray.count) {
[self.tableView.mj_header beginRefreshing];
}
}
/**
* 进行网络请求获取数据
*/
- (void)loadData {
self.isAll = NO;
self.pageNumber = 1;
NSString *strUrl = @"http://app.phonemovie.cnlive.com/gxb/api/cataloglatest";
NSLog(@"%@",strUrl);
NSString *categoryId = [NSString stringWithFormat:@"{\"plat\":\"i\",\"version\":\"5.0\",\"appid\":\"gxb\",\"categoryId\":\"%@\",\"page\":\"%ld\",\"pageSize\":\"10\"}",_dictionary[@"cid"],(long)self.pageNumber];
NSLog(@"%@",categoryId);
if (![[Reachability reachabilityForInternetConnection] currentReachabilityStatus]) {
[AlertViewTool showHUDViewText:CustomStr(@"NetworkiInterruption")];
return;
}
NSDictionary *parameters = @{@"params":categoryId};
AFHTTPSessionManager *manager = [AFHTTPSessionManager manager];
[manager POST:strUrl
parameters:parameters headers:nil
progress:^(NSProgress * _Nonnull uploadProgress) {}
success:^(NSURLSessionDataTask * _Nonnull task, id _Nullable responseObject) {
// 请求成功,解析数据
NSDictionary *dic = [NSDictionary dictionaryWithDictionary:responseObject];
//NSLog(@"%@", dic);
if ([dic[@"errorCode"] isEqualToString:@"0"]) {
NSArray *array = dic[@"programs"];
if (0 == [array count]) {
self.errorLabe.hidden = NO;
} else {
if (self.dataArray.count > 0) {
[self.dataArray removeAllObjects];
}
[self.dataArray addObjectsFromArray:array];
}
[self.tableView.mj_header endRefreshing];
if (![dic[@"nextCursor"] isEqualToString:@"0"]) {
[self.tableView.mj_footer setHidden:NO];
}
[self.tableView reloadData];
} else {
[self.tableView.mj_header endRefreshing];
[AlertViewTool showHUDViewText:dic[@"errorMessage"]];
}
}
failure:^(NSURLSessionDataTask * _Nullable task, NSError * _Nonnull error) {
// 请求失败
[self.tableView.mj_header endRefreshing];
[AlertViewTool showHUDViewText:CustomStr(@"ServerBusy")];
}];
}
/**
* 上拉加载
*/
- (void)loadMoreData {
if (self.isAll) {
[self.tableView.mj_footer noticeNoMoreData];
return;
}
self.pageNumber++;
NSString *strUrl = @"http://app.phonemovie.cnlive.com/gxb/api/cataloglatest";
NSLog(@"%@",strUrl);
NSString *categoryId = [NSString stringWithFormat:@"{\"plat\":\"i\",\"version\":\"5.0\",\"appid\":\"gxb\",\"categoryId\":\"%@\",\"page\":\"%ld\",\"pageSize\":\"10\"}",_dictionary[@"cid"],(long)self.pageNumber];
NSLog(@"%@",categoryId);
NSDictionary *parameters = @{@"params":categoryId};
AFHTTPSessionManager *manager = [AFHTTPSessionManager manager];
[manager POST:strUrl
parameters:parameters headers:nil
progress:^(NSProgress * _Nonnull uploadProgress) {}
success:^(NSURLSessionDataTask * _Nonnull task, id _Nullable responseObject) {
// 请求成功,解析数据
NSDictionary *dic = [NSDictionary dictionaryWithDictionary:responseObject];
//NSLog(@"%@", dic);
if ([dic[@"nextCursor"] isEqualToString:@"0"]) {
self.isAll = YES;
}
if ([dic[@"errorCode"] isEqualToString:@"0"]) {
NSArray *array = dic[@"programs"];
[self.dataArray addObjectsFromArray:array];
} else {
[AlertViewTool showHUDViewText:dic[@"errorMessage"]];
}
[self.tableView.mj_footer endRefreshing];
[self.tableView reloadData];
}
failure:^(NSURLSessionDataTask * _Nullable task, NSError * _Nonnull error) {
// 请求失败
NSLog(@"%@", [error localizedDescription]);
[AlertViewTool showHUDViewText:CustomStr(@"ServerBusy")];
}];
}
#pragma mark - UITableViewDelegate AND UITableViewDataSource
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
return self.dataArray.count;
}
- (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section {
return 6.0f;
}
- (nullable UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section {
UIView *view = [[UIView alloc] initWithFrame:CGRectMake(0, 0, MainScreenWidth, 6)];
view.backgroundColor = HEXCOLOR(0xeaeded);
return view;
}
-(CGFloat)tableView:(UITableView*)tableView heightForFooterInSection:(NSInteger)section {
return 6.0f;
}
- (nullable UIView *)tableView:(UITableView *)tableView viewForFooterInSection:(NSInteger)section {
UIView *view = [[UIView alloc] initWithFrame:CGRectMake(0, 0, MainScreenWidth, 6)];
view.backgroundColor = HEXCOLOR(0xeaeded);
return view;
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
NSDictionary *_dic = self.dataArray[indexPath.row];
NSString *showType = nil;
if (IS_STRING_EMPTY(_dic[@"showType"])){
showType = @"1";
} else {
showType = _dic[@"showType"];
}
if ([@"0" isEqualToString:showType]) {
static NSString *identifier = @"BigImageCell";
BigImageTableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:identifier];
if (cell == nil) {
cell = [[BigImageTableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:identifier];
}
[cell.bigImage sd_setImageWithURL:[NSURL URLWithString:_dic[@"img"]] placeholderImage:[UIImage imageNamed:@"backDefault"]];
cell.titleLabel.text = _dic[@"title"];
cell.timeLabel.text = _dic[@"createDate"];
NSString *text = [NSString stringWithFormat:@"%@",_dic[@"tags"]];
if ([text isEqualToString:@"<null>"]) {
text = @"";
}
if ([@"program" isEqualToString:_dic[@"type"]]) {
cell.playImage.image = [UIImage imageNamed:@"playButton"];
cell.tagsLabel.backgroundColor = HEXCOLOR(0x195AC9);
cell.timeLabel.hidden = NO;
} else if ([@"subject" isEqualToString:_dic[@"type"]]) {
cell.tagsLabel.backgroundColor = HEXCOLOR(0xf87d09);
// text = @"专题";
text = _dic[@"subjecttag"] ? _dic[@"subjecttag"] : @"专题";
cell.timeLabel.hidden = YES;
cell.playImage.image = nil;
} else {
cell.tagsLabel.backgroundColor = HEXCOLOR(0x195AC9);
cell.timeLabel.hidden = NO;
cell.playImage.image = nil;
}
if ([text length] > 0) {
[cell.tagsLabel setHidden:NO];
[cell.tagsLabel setText:text];
[cell reSetTagFrame];
} else {
[cell.tagsLabel setHidden:YES];
}
return cell;
} else if ([@"1" isEqualToString:showType]) {
static NSString *identifier = @"LeftImageCell";
LeftImageTableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:identifier];
if (cell == nil) {
cell = [[LeftImageTableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:identifier];
}
[cell.leftImage sd_setImageWithURL:[NSURL URLWithString:_dic[@"img"]] placeholderImage:[UIImage imageNamed:@"backDefault"]];
if ([@"program" isEqualToString:_dic[@"type"]]) {
cell.playImage.image = [UIImage imageNamed:@"playButton"];
} else {
cell.playImage.image = nil;
}
cell.titleLabel.text = _dic[@"title"];
cell.timeLabel.text = _dic[@"createDate"];
NSString *text = [NSString stringWithFormat:@"%@",_dic[@"tags"]];
if ([text isEqualToString:@"<null>"]) {
text = @"";
}
if ([text length] > 0) {
[cell.tagsLabel setHidden:NO];
[cell.tagsLabel setText:text];
[cell reSetTagFrame];
} else {
[cell.tagsLabel setHidden:YES];
}
return cell;
} else if ([@"2" isEqualToString:showType]) {
static NSString *identifier = @"ThreeImageCell";
ThreeImageTableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:identifier];
if (cell == nil) {
cell = [[ThreeImageTableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:identifier];
}
[cell.leftImage sd_setImageWithURL:[NSURL URLWithString:_dic[@"img"]] placeholderImage:[UIImage imageNamed:@"backDefault"]];
[cell.midleImage sd_setImageWithURL:[NSURL URLWithString:_dic[@"imgSmall"]] placeholderImage:[UIImage imageNamed:@"backDefault"]];
[cell.rightImage sd_setImageWithURL:[NSURL URLWithString:_dic[@"imgBig"]] placeholderImage:[UIImage imageNamed:@"backDefault"]];
cell.titleLabel.text = _dic[@"title"];
cell.timeLabel.text = _dic[@"createDate"];
NSString *text = [NSString stringWithFormat:@"%@",_dic[@"tags"]];
if ([text isEqualToString:@"<null>"]) {
text = @"";
}
if ([text length] > 0) {
[cell.tagsLabel setHidden:NO];
[cell.tagsLabel setText:text];
[cell reSetTagFrame];
} else {
[cell.tagsLabel setHidden:YES];
}
return cell;
} else if ([@"3" isEqualToString:showType]) {
static NSString *identifier = @"LeftImageCell";
LeftImageTableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:identifier];
if (cell == nil) {
cell = [[LeftImageTableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:identifier];
}
[cell.leftImage sd_setImageWithURL:[NSURL URLWithString:_dic[@"img"]] placeholderImage:[UIImage imageNamed:@"backDefault"]];
cell.titleLabel.text = _dic[@"title"];
cell.timeLabel.text = _dic[@"createDate"];
NSString *text = [NSString stringWithFormat:@"%@",_dic[@"tags"]];
if ([text isEqualToString:@"<null>"]) {
text = @"";
}
if ([text length] > 0) {
[cell.tagsLabel setHidden:NO];
[cell.tagsLabel setText:text];
[cell reSetTagFrame];
} else {
[cell.tagsLabel setHidden:YES];
}
return cell;
}
static NSString *identifier = @"cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:identifier];
if (cell == nil) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:identifier];
}
return cell;
}
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
CGFloat height = 0;
NSDictionary *_dic = self.dataArray[indexPath.row];
NSString *showType = nil;
if (IS_STRING_EMPTY(_dic[@"showType"])){
showType = @"1";
} else {
showType = _dic[@"showType"];;
}
if ([@"0" isEqualToString:showType]) {
height = cellItemWidth*5/8 + 66 + 12.0;
} else if ([@"1" isEqualToString:showType]) {
height = MainScreenWidth*5/24 + 8 + 12.0;
} else if ([@"2" isEqualToString:showType]) {
height = threeImageCellWidth*5/8 + 50 + 12.0;
} else if ([@"3" isEqualToString:showType]) {
height = MainScreenWidth*5/24 + 8 + 12.0;
}
return height;
}
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
NSLog(@"%@",self.dataArray[indexPath.row]);
NSDictionary *_dic = self.dataArray[indexPath.row];
[self pushViewTo:_dic];
}
- (void)pushViewTo:(NSDictionary *)_dic {
if ([@"program" isEqualToString:_dic[@"type"]]) {
OldVideoDetailViewController *vc = [[OldVideoDetailViewController alloc] initWithDictionary:_dic];
vc.title = _dic[@"cmsColumnName"];
vc.hidesBottomBarWhenPushed = YES;
[self.navigationController pushViewController:vc animated:YES];
} else if ([@"article" isEqualToString:_dic[@"type"]]) {
OldArticleDetailViewController *vc = [[OldArticleDetailViewController alloc] initWithDictionary:_dic];
vc.title = _dic[@"cmsColumnName"];
vc.hidesBottomBarWhenPushed = YES;
[self.navigationController pushViewController:vc animated:YES];
} else if ([@"subject" isEqualToString:_dic[@"type"]]) {
OldArticleDetailViewController *vc = [[OldArticleDetailViewController alloc] initWithDictionary:_dic];
vc.title = _dic[@"cmsColumnName"];
vc.hidesBottomBarWhenPushed = YES;
[self.navigationController pushViewController:vc animated:YES];
} else {
OldArticleDetailViewController *vc = [[OldArticleDetailViewController alloc] initWithDictionary:_dic];
vc.title = _dic[@"cmsColumnName"];
vc.hidesBottomBarWhenPushed = YES;
[self.navigationController pushViewController:vc animated:YES];
} }
-(void)viewDidLayoutSubviews{
if ([self.tableView respondsToSelector:@selector(setSeparatorInset:)])
[self.tableView setSeparatorInset:UIEdgeInsetsMake(0,0,0,0)];
if ([self.tableView respondsToSelector:@selector(setLayoutMargins:)])
[self.tableView setLayoutMargins:UIEdgeInsetsMake(0,0,0,0)];
}
-(void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath{
if ([cell respondsToSelector:@selector(setSeparatorInset:)])
[cell setSeparatorInset:UIEdgeInsetsZero];
if ([cell respondsToSelector:@selector(setLayoutMargins:)])
[cell setLayoutMargins:UIEdgeInsetsZero];
}
- (void)didReceiveMemoryWarning {
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}
@end