gpt4 book ai didi

ios - 如何在 TableView 标题中更改 uiview 的高度

转载 作者:塔克拉玛干 更新时间:2023-11-02 10:06:31 26 4
gpt4 key购买 nike

我有 tableview,作为 tableview 标题的 subview 。

我希望 View 根据与导航栏上按钮的交互增加高度。

我试过用下面的方法来做,但没有成功:

- (IBAction)submit:(id)sender {
_submitView.frame = CGRectMake(0, 0, _submitView.frame.size.width, 568);

[submitView setNeedsDisplay];
[self.tableview reloadData];


}

两种重新加载方法都不会刷新 submitView,以便在按下按钮时它变大。

当用户触发此功能时,如何更改 View 的高度?

最佳答案

如果这是指 TableView 标题而不是节标题,则 this问题表明您需要在更改其框架后再次设置标题 - 这样的事情应该有效:

CGRect newFrame = headerView.frame;
newFrame.size.height = newFrame.size.height + webView.frame.size.height;
headerView.frame = newFrame;
[self.tableView setTableHeaderView:headerView];

如果这是指节标题,那么 sage444 有正确的方法。

祝你好运!

关于ios - 如何在 TableView 标题中更改 uiview 的高度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21761434/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com