iphone在隐藏其上方的元素时重新定位UITableView

发布于 2024-10-13 01:43:53 字数 211 浏览 2 评论 0原文

我想做这个:

alt text

所以......当用户单击搜索图标(左上角)时searchBar 设置为隐藏,UITableView 大小调整为顶部。如何调整表格大小?是否可以在不使用尺寸的情况下实现此目的(例如将表格的顶部设置为导航的底部或其他)?

谢谢。

I would like to make this:

alt text

So... when a user clicks on the search icon (top-left) the searchBar is set to hidden and UITableView is resized to top. How can I resize a table? Is it possible to achieve this not usign dimensions (like just set table's top to the navigation's bottom or smth)?

Thx.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

身边 2024-10-20 01:43:53

您必须在动画块内修改表格视图的frame。由您来计算框架矩形的正确尺寸。

CGRect newFrame = self.tableView.frame;
newFrame.origin.x -= self.navigationBar.frame.size.height;
newFrame.size.height += self.navigationBar.frame.size.height;
[UIView animateWithDuration:0.25 animations:^{
    self.tableView.frame = newFrame;
}];

You have to modify the table view's frame inside an animation block. It is up to you to calculate the correct dimensions of the frame rectangle.

CGRect newFrame = self.tableView.frame;
newFrame.origin.x -= self.navigationBar.frame.size.height;
newFrame.size.height += self.navigationBar.frame.size.height;
[UIView animateWithDuration:0.25 animations:^{
    self.tableView.frame = newFrame;
}];
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文