gpt4 book ai didi

ios - 如何设置我的 iOS Storyboard以像 Instagram Stream 一样弹跳?

转载 作者:可可西里 更新时间:2023-11-01 04:40:16 25 4
gpt4 key购买 nike

我正在构建一个包含社交内容流的应用程序,并试图了解 Instagram 如何在应用程序中进行流式传输的行为。所以基本上是一个顶部标题,它滚动出屏幕但在它和内容之间弹跳。我可以让顶部标题滚出屏幕,我可以让 View 不反弹,但我想使用 Pull 来刷新,最终会超过“人造”导航栏 UIView .我知道普通的 Navbar 会产生这个,但这个滚动的是另一回事。

目前我有一个 UITableview有一个 UIViewUITableViewCell 之上一切都很好,除了反弹发生在UIView之上.我想我需要得到 UIViewUITableView 之上但是在 UITableViewController 中, Storyboard不允许我放置 UIViewUITableView 之上.

有什么想法吗???

谢谢

最佳答案

好吧,我终于让这一切都起作用了,所以我想我会为每个人发布答案。

基本上我设置了一个标准的导航栏,然后在 scrollViewDidScroll 上我得到滚动的偏移量并根据它更改框架。这似乎工作得很好,请参阅下面的 scrollViewDidScroll 方法。

- (void)scrollViewDidScroll:(UIScrollView *)sender {

//Initializing the views and the new frame sizes.
UINavigationBar *navbar = self.navigationController.navigationBar;
UIView *tableView = self.view;

CGRect navBarFrame = self.navigationController.navigationBar.frame;
CGRect tableFrame = self.view.frame;

//changing the origin.y based on the current scroll view.
//Adding +20 for the Status Bar since the offset is tied into that.
navBarFrame.origin.y = MIN(0, (sender.contentOffset.y * -1)) +20;
navbar.frame = navBarFrame;

tableFrame.origin.y = MIN(0,MAX(-44,(sender.contentOffset.y * -1)));
tableView.frame = tableFrame;

}

此外,您还需要将 TableView 提高 44px 以补偿滚动,否则您的框架将不够大。我只是在 viewWillAppear 中做了这个,并使框架变大了。

关于ios - 如何设置我的 iOS Storyboard以像 Instagram Stream 一样弹跳?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11450959/

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