SCIOSpecialViewController.m 27.3 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 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588
//
//  SCIOSpecialViewController.m
//  CNLiveScioLive
//
//  Created by CNLive-zxw on 2018/9/27.
//  Copyright © 2018年 CNLive. All rights reserved.
//

#import "SCIOSpecialViewController.h"
#import "OldVideoDetailViewController.h"
#import "OldArticleDetailViewController.h"
#import "MoreSpecialViewController.h"

#import "BigImageTableViewCell.h"
#import "LeftImageTableViewCell.h"
#import "ThreeImageTableViewCell.h"
#import "YWWebScrollView.h"
#import "Html5Utils.h"


@interface SCIOSpecialViewController ()<UITableViewDataSource,UITableViewDelegate>{
    NSDictionary *_dictionary;
    CGFloat bannerHeight;
    UIView *_bannerView;
    UIImageView *_image;
    UILabel *_label;
}
@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 SCIOSpecialViewController
-(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)loadShareView {
    UIImageView *lineImage = [[UIImageView alloc] init];
    if (iPhoneX) {
        lineImage.frame = CGRectMake(0, MainScreenHeight - 44 - 34 - 88, MainScreenWidth, 1);
    } else {
        lineImage.frame = CGRectMake(0, MainScreenHeight - 64 - 44, MainScreenWidth, 1);
    }
    lineImage.backgroundColor = Color_Line;
    [self.view addSubview:lineImage];
    
    UIButton *isFavoriteButton = [UIButton buttonWithType:UIButtonTypeCustom];
    TableData *notice = [[TableData alloc] initWithJSONDictionary:_dictionary];
    BOOL isIn = [[DBAction sharedDBAction] isInTable:[User_Defaults objectForKey:Language_Local] notice:notice];
    if (isIn) {
        [isFavoriteButton setImage:[UIImage imageNamed:@"cnlive_isfavorited"] forState:UIControlStateNormal];
    } else {
        [isFavoriteButton setImage:[UIImage imageNamed:@"cnlive_isfavorite"] forState:UIControlStateNormal];
    }
    if (iPhoneX) {
        [isFavoriteButton setFrame:CGRectMake((MainScreenWidth/3 - 33/2), MainScreenHeight - 44 + (44 - 22)/2 - 34 - 88, 33, 22)];
    } else {
        [isFavoriteButton setFrame:CGRectMake((MainScreenWidth/3 - 33/2), MainScreenHeight - 64 - 44 + (44 - 22)/2, 33, 22)];
    }
    [isFavoriteButton addTarget:self action:@selector(shareButtonTaped:) forControlEvents:UIControlEventTouchUpInside];
    [self.view addSubview:isFavoriteButton];
    [isFavoriteButton setTag:20000];
    
    UIButton *shareButton = [UIButton buttonWithType:UIButtonTypeCustom];
    [shareButton setImage:[UIImage imageNamed:@"cnlive_share"] forState:UIControlStateNormal];
    if (iPhoneX) {
        [shareButton setFrame:CGRectMake((MainScreenWidth*2/3 - 33/2), MainScreenHeight - 44 + (44 - 22)/2 - 34 - 88, 33, 22)];
    } else {
        [shareButton setFrame:CGRectMake((MainScreenWidth*2/3 - 33/2), MainScreenHeight - 64 - 44 + (44 - 22)/2, 33, 22)];
    }
    [shareButton addTarget:self action:@selector(shareButtonTaped:) forControlEvents:UIControlEventTouchUpInside];
    [self.view addSubview:shareButton];
    [shareButton setTag:30000];
}
- (void)shareButtonTaped:(id)sender {
    UIButton *btn = (UIButton *)sender;
    if (20000 == btn.tag) {
        TableData *notice = [[TableData alloc] initWithJSONDictionary:_dictionary];
        BOOL isIn = [[DBAction sharedDBAction] isInTable:[User_Defaults objectForKey:Language_Local] notice:notice];
        if (!isIn) {
            BOOL isInsert = [[DBAction sharedDBAction] insertTable:[User_Defaults objectForKey:Language_Local] notice:notice];
            if (isInsert) {
                [AlertViewTool showHUDAddedToView:self.view text:CustomStr(@"CollectSuccess")];
                [btn setImage:[UIImage imageNamed:@"cnlive_isfavorited"] forState:UIControlStateNormal];
            }
        } else {
            BOOL isDelete = [[DBAction sharedDBAction] deleteTable:[User_Defaults objectForKey:Language_Local] notice:notice];
            if (isDelete) {
                [AlertViewTool showHUDAddedToView:self.view text:CustomStr(@"CancelCollect")];
                [btn setImage:[UIImage imageNamed:@"cnlive_isfavorite"] forState:UIControlStateNormal];
            }
        }
    } else if (30000 == btn.tag) {
        NSString *img = [NSString stringWithFormat:@"%@",_dictionary[@"img"]];
        NSString *title = [NSString stringWithFormat:@"%@",_dictionary[@"title"]];
        NSString *text = [NSString stringWithFormat:@"%@",!_dictionary[@"desc"]||[_dictionary[@"desc"] isEqualToString:@""]?title:_dictionary[@"desc"]];
        NSString *url = [NSString stringWithFormat:@"%@",_dictionary[@"pageUrl"]];
        [[TemplateShareManager manager] shareImage:img title:title text:text url:url controller:self];
        return;
        
    }
}
- (void)viewDidLoad {
    [super viewDidLoad];
    self.view.backgroundColor = [UIColor whiteColor];

    [self setUpNavigationBar];
    [self loadShareView];
    
    bannerHeight = MainScreenWidth*13/64;
    _bannerView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, MainScreenWidth, bannerHeight + 200)];
    _bannerView.backgroundColor = [UIColor whiteColor];
    _image = [[UIImageView alloc] initWithFrame:CGRectMake(0, 0, MainScreenWidth, bannerHeight)];
    _image.contentMode = UIViewContentModeScaleAspectFill;
    _image.layer.masksToBounds = YES;
    [_bannerView addSubview:_image];
    
    _label = [[UILabel alloc] initWithFrame:CGRectMake(12, bannerHeight, MainScreenWidth - 24, 100)];
    _label.backgroundColor = [UIColor clearColor];
    _label.font = [UIFont systemFontOfSize:16];
    _label.numberOfLines = 0;
    [_bannerView addSubview:_label];
    
    if (iPhoneX) {
        self.tableView = [[UITableView alloc] initWithFrame:CGRectMake(0, 0, MainScreenWidth, MainScreenHeight - 88 - 44 - 34) style:UITableViewStyleGrouped];
    } else {
        self.tableView = [[UITableView alloc] initWithFrame:CGRectMake(0, 0, MainScreenWidth, MainScreenHeight - 64 - 44) style:UITableViewStyleGrouped];
    }
    self.tableView.delegate = self;
    self.tableView.dataSource = self;
    self.tableView.separatorStyle = UITableViewCellSeparatorStyleNone;
    self.tableView.backgroundColor = [UIColor whiteColor];
    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:@"refresh0%zd", i]];
            [refreshingImages addObject:image];
        }
        [header setImages:refreshingImages forState:MJRefreshStateRefreshing];
        header.lastUpdatedTimeLabel.hidden = NO;
        header.stateLabel.hidden = NO;
    //      设置下拉刷新
    //    MJRefreshAutoNormalFooter *footer = [MJRefreshAutoNormalFooter footerWithRefreshingTarget:self refreshingAction:@selector(loadMoreData)];
        self.tableView.mj_header = header;
    //    self.tableView.footer = footer;
    //    self.tableView.footer.hidden = YES;
    //  设置没有数据
    if (iPhoneX) {
        self.errorLabe = [[UILabel alloc] initWithFrame:CGRectMake(0, 0, MainScreenWidth, MainScreenHeight - 88 - 40)];
    } else {
        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 loadData];
    }
}
/**
 *  进行网络请求获取数据
 */
- (void)loadData {
    self.isAll = NO;
    self.pageNumber = 1;
    NSString *strUrl = REQUESTURL(@"gxb/api/objectContent");
    NSLog(@"%@",strUrl);
    NSString *categoryId = [NSString stringWithFormat:@"{\"plat\":\"i\",\"version\":\"5.0\",\"appid\":\"gxb\",\"cmsContentId\":\"%@\"}",_dictionary[@"cmsContentId"]];
    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 reloadBannerView:dic];
                  [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 = REQUESTURL(@"gxb/api/cataloglatest");
    NSLog(@"%@",strUrl);//,\"page\":\"%ld\",\"pageSize\":\"10\"
    NSString *categoryId = [NSString stringWithFormat:@"{\"plat\":\"i\",\"version\":\"5.0\",\"appid\":\"gxb\",\"cmsContentId\":\"%@\"}",_dictionary[@"cmsContentId"]];//,(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")];
          }];
}
- (void)reloadBannerView:(NSDictionary *)dic {
    [_image sd_setImageWithURL:[NSURL URLWithString:dic[@"titleImage"]] placeholderImage:[UIImage imageNamed:@"backDefault"]];
    
    NSMutableAttributedString *str = [[NSMutableAttributedString alloc] initWithString:[NSString stringWithFormat:@"摘要  %@",dic[@"description"]]];
    [str addAttribute:NSForegroundColorAttributeName value:HEXCOLOR(0x1959C9) range:NSMakeRange(0,2)]; //设置字体颜色
    _label.attributedText = str;
    //_label.text = dic[@"description"];
    [_label sizeToFit];
    CGRect frame = _label.frame;
    [_label setFrame:CGRectMake(12, bannerHeight, MainScreenWidth - 24, frame.size.height + 10)];
    [_bannerView setFrame:CGRectMake(0, 0, MainScreenWidth, bannerHeight + frame.size.height + 10)];
    self.tableView.tableHeaderView = _bannerView;
}
#pragma mark - UITableViewDelegate AND UITableViewDataSource
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
    return self.dataArray.count;
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
    NSDictionary *dic = self.dataArray[section];
    NSArray *array = dic[@"list"];
    return array.count;
}
- (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section {
    return 40.0f;
}
- (nullable UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section {
    NSDictionary *dic = self.dataArray[section];
    NSArray *array = dic[@"list"];
    UIView *view = [[UIView alloc] initWithFrame:CGRectMake(0, 0, MainScreenWidth, 40.0)];
    view.backgroundColor = [UIColor whiteColor];
    
    UIView *line = [[UIView alloc] initWithFrame:CGRectMake(12, 10, MainScreenWidth - 24, 1)];
    line.backgroundColor = HEXCOLOR(0x1959c9);
    
    UILabel *label = [[UILabel alloc] initWithFrame:CGRectMake(12, 10, MainScreenWidth - 112, 40)];
    label.textColor = HEXCOLOR(0x1959c9);
    label.font = [UIFont systemFontOfSize:16.0];
    label.text = dic[@"title"];
    if ([dic[@"moreVisible"] isEqualToString:@"1"]) {
        UIButton *button = [UIButton buttonWithType:UIButtonTypeCustom];
        [button setTitle:dic[@"moreTitle"] forState:UIControlStateNormal];
        [button setFrame:CGRectMake(MainScreenWidth - 122 , 10, 100, 40)];
        button.contentHorizontalAlignment=UIControlContentHorizontalAlignmentRight;
        button.tag = section;
        [button setTitleColor:HEXCOLOR(0x1959C9) forState:UIControlStateNormal];
        [button.titleLabel setFont: [UIFont systemFontOfSize:14.0f]];
        [button addTarget:self action:@selector(buttonClicked:) forControlEvents:UIControlEventTouchUpInside];
        [view addSubview:button];
    }else if ([dic[@"moreVisible"] isEqualToString:@"2"]){}
    else{
    if ([array count] > 4) {
        UIButton *button = [UIButton buttonWithType:UIButtonTypeCustom];
        [button setTitle:@"更多" forState:UIControlStateNormal];
        [button setFrame:CGRectMake(MainScreenWidth - 122 , 10, 100, 40)];
        button.contentHorizontalAlignment=UIControlContentHorizontalAlignmentRight;
        button.tag = section;
        [button setTitleColor:HEXCOLOR(0x1959C9) forState:UIControlStateNormal];
        [button.titleLabel setFont: [UIFont systemFontOfSize:14.0f]];
        [button addTarget:self action:@selector(buttonClicked:) forControlEvents:UIControlEventTouchUpInside];
        [view addSubview:button];
    }
    }
    [view addSubview:line];
    [view addSubview:label];
    
    return view;
}
- (void)buttonClicked:(UIButton *)button {
    NSDictionary *dic = self.dataArray[button.tag];
    NSLog(@"%@",dic);
    MoreSpecialViewController *vc = [[MoreSpecialViewController alloc] initWithDictionary:dic];
    vc.title = dic[@"title"];
    vc.hidesBottomBarWhenPushed = YES;
    [self.navigationController pushViewController:vc animated:YES];
}
-(CGFloat)tableView:(UITableView*)tableView heightForFooterInSection:(NSInteger)section {
    return 0.001f;
}
- (nullable UIView *)tableView:(UITableView *)tableView viewForFooterInSection:(NSInteger)section {
    UIView *view = [[UIView alloc] initWithFrame:CGRectMake(0, 0, MainScreenWidth, 0.001)];
    view.backgroundColor = [UIColor whiteColor];
    return view;
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
    NSDictionary *dic = self.dataArray[indexPath.section];
    NSArray *array = dic[@"list"];
    NSDictionary *_dic = array[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 * titleColor = _dic[@"titleColor"];
        if (titleColor&&![titleColor isEqualToString:@""]) {
            cell.titleLabel.textColor = [UIColor colorWithHexString:_dic[@"titleColor"]];
        }else
        {
            cell.titleLabel.textColor = HEXCOLOR(0x333333);
        }
        NSString *tagsColor = _dic[@"tagsColor"];
        if (tagsColor&&![tagsColor isEqualToString:@""]) {
            cell.tagsLabel.backgroundColor = [UIColor colorWithHexString:_dic[@"tagsColor"]];
        }else
        {
            cell.tagsLabel.backgroundColor = HEXCOLOR(0x195AC9);
        }
        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.section];
    NSArray *array = dic[@"list"];
    NSDictionary *_dic = array[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 {
    [tableView deselectRowAtIndexPath:indexPath animated:YES];
    NSLog(@"%@",self.dataArray[indexPath.section]);
    NSDictionary *dic = self.dataArray[indexPath.section];
    NSArray *array = dic[@"list"];
    NSDictionary *_dic = array[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"]]) {
        SCIOSpecialViewController *vc = [[SCIOSpecialViewController alloc] initWithDictionary:_dic];
        vc.title = _dic[@"国新专题"];
        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