作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
现在,我要生成一个 titleview,它的高度对于 tableHeaderView 是可变的。所以我需要在生成 tableview 之前确认 titleview 的高度
//titleView
JMProductTitleView *titleView = [[JMProductTitleView alloc]initWithFrame:CGRectMake(0, 0, JMDeviceWidth, 300)];
titleView.delegate = self;
JMProductDetailModel *model = [JMPorductDetailTool createProductDetailModel];
titleView.model = model;
_titleView = titleView;
//
UITableView *tableView = [[UITableView alloc]initWithFrame:CGRectMake(0, 0, JMDeviceWidth, JMDeviceHeight) style:UITableViewStylePlain];
tableView.delegate = self;
tableView.dataSource = self;
tableView.tableHeaderView = titleView;
[self.view addSubview:tableView];
_tableView = tableView;
最佳答案
您可以尝试使用[self.view layoutIfNeeded]。它将强制 View 布局所有约束。
关于ios - 如何在其他 View 生成之前完成一个 View 约束,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37872636/
我是一名优秀的程序员,十分优秀!