修复了动态很多个bug

This commit is contained in:
fengshuo
2022-08-26 17:13:20 +08:00
parent 1808c072af
commit c1b62f6426
29 changed files with 515 additions and 120 deletions

View File

@@ -126,8 +126,10 @@
[tableView deselectRowAtIndexPath:indexPath animated:YES];
if (self.datasource.count > 0) {
XPMonentsDetailViewController * detailVC = [[XPMonentsDetailViewController alloc] init];
MonentsInfoModel * monentsInfo = [self.datasource objectAtIndex:indexPath.row];
detailVC.monentsInfo = monentsInfo;
MonentsInteractiveModel * model = [self.datasource objectAtIndex:indexPath.row];
MonentsInfoModel * monents = [[MonentsInfoModel alloc] init];
monents.dynamicId = model.dynamicId;
detailVC.monentsInfo = monents;
[self.navigationController pushViewController:detailVC animated:YES];
}
}