Commit 87d226bc authored by admin's avatar admin

修复点击首页口碑排名第一行 崩溃

parent 94c9f6e5
......@@ -637,6 +637,9 @@ typedef NSComparisonResult (^NSComparator)(id obj1, id obj2);
self.hidesBottomBarWhenPushed = YES;
[self.navigationController pushViewController:inspectTaskVC animated:YES];
} else if ([titleArray[indexPath.section] isEqualToString:@"口碑排名"] && indexPath.section == s2) {
if (indexPath.row == 0) {
return;
}
RankListModel *rankList = _allRankListArray[indexPath.row - 1];
RankDetailViewController *rankDetailVC = [[RankDetailViewController alloc] init];
rankDetailVC.indexRow = rankList.index;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment