Commit 037497a195fb0c384b8e513cb53061cfc0809c07

Authored by yanglingyu
1 parent 8a10fbf0

文章点击其他推荐有两个灰色背景

CNLiveScioLive/Pages/Home/新闻详情/OldController/OldArticleDetailViewController.m
... ... @@ -587,6 +587,7 @@
587 587 return cell;
588 588 }
589 589 - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
  590 + [tableView deselectRowAtIndexPath:indexPath animated:YES];
590 591 NSLog(@"%@",_newsArray[indexPath.row]);
591 592 NSDictionary *_dic = _newsArray[indexPath.row];
592 593 [self pushViewTo:_dic];
... ...
CNLiveScioLive/Pages/Home/新闻详情/OldController/OldVideoDetailViewController.m
... ... @@ -531,6 +531,7 @@
531 531 return cell;
532 532 }
533 533 - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
  534 + [tableView deselectRowAtIndexPath:indexPath animated:YES];
534 535 NSLog(@"%@",_newsArray[indexPath.row]);
535 536 NSDictionary *_dic = _newsArray[indexPath.row];
536 537 [self pushViewTo:_dic];
... ...
CNLiveScioLive/Pages/Home/新闻详情/OldController/SCIOSpecialViewController.m
... ... @@ -516,6 +516,7 @@
516 516 return height;
517 517 }
518 518 - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
  519 + [tableView deselectRowAtIndexPath:indexPath animated:YES];
519 520 NSLog(@"%@",self.dataArray[indexPath.section]);
520 521 NSDictionary *dic = self.dataArray[indexPath.section];
521 522 NSArray *array = dic[@"list"];
... ...