iphone在隐藏其上方的元素时重新定位UITableView
我想做这个:
所以......当用户单击搜索图标(左上角)时searchBar 设置为隐藏,UITableView 大小调整为顶部。如何调整表格大小?是否可以在不使用尺寸的情况下实现此目的(例如将表格的顶部设置为导航的底部或其他)?
谢谢。
I would like to make this:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须在动画块内修改表格视图的
frame
。由您来计算框架矩形的正确尺寸。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.