gpt4 book ai didi

iphone - 如何在 UITableView Controller 中调整 TableView 的大小?

转载 作者:行者123 更新时间:2023-11-29 11:19:03 24 4
gpt4 key购买 nike

我有一个 UINavigationController,它包含一个 UITableViewController 的 View 。如何从导航 Controller 中调整表格 View 的大小?

最佳答案

不确定这是否是您要查找的内容,但听起来很接近。这会将您的 tableView 调整为您指定的任何像素大小。它也会在转换中执行此操作(因此它不只是跳到大小)。如果需要,您可以删除过渡。

[UIView beginAnimations:nil context:nil];
[UIView setAnimationDuration:0.5];

CGRect rect = myTableView.frame;
rect.size.height = 400;
rect.size.width = 300;
myTableView.frame = rect;
[UIView commitAnimations];

关于iphone - 如何在 UITableView Controller 中调整 TableView 的大小?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8113901/

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