gpt4 book ai didi

iphone - 下拉 UItableView 切换 View Controller

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:20:43 25 4
gpt4 key购买 nike

我必须设计一个具有顶 View Controller 和底 View Controller 的 View Controller 。顶 View Controller 的 Root View 是 UITableView。正如我们所知,UITableView 的 super View 是 UIScrollView,所以我想修改 UITableView,当超过 60px 时,它将显示底部 View Controller 。我一次又一次地阅读了 UITableView 和 UIScrollView 类引用,但找不到任何解决方案。有人知道吗?谢谢。

enter image description here

============================================= ================================================ ================================================ =================

我已经解决了。请查看https://github.com/yishuiliunian/DZPullDownViewController.git

最佳答案

在 View Controller (包含 UITableView)中实现 UIScrollViewDelegate 方法:

- (void)scrollViewDidEndDragging:(UIScrollView *)scrollView willDecelerate:(BOOL)decelerate
{
if(self.tableView.contentOffset.y<-70)
{
// Write your code here (To load new view controller)
}
}

希望这对您有所帮助。

关于iphone - 下拉 UItableView 切换 View Controller ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18586368/

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