gpt4 book ai didi

ios - UIScrollView滚动ViewWillEndDragging : targetContentOffset: not working

转载 作者:行者123 更新时间:2023-12-01 22:51:57 24 4
gpt4 key购买 nike

为什么这不起作用?我在 targetContentOffset->y = -50.0f; 设置了一个断点,并且它被击中,不知道为什么它没有任何效果。

是的寻呼 = 否。

- (void)scrollViewWillEndDragging:(UIScrollView *)scrollView withVelocity:(CGPoint)velocity targetContentOffset:(inout CGPoint *)targetContentOffset {
if (scrollView.contentOffset.y < -50.0f) {
targetContentOffset->y = -50.0f;
}
else {
*targetContentOffset = CGPointZero;

// Need to call this subsequently to remove flickering.
dispatch_async(dispatch_get_main_queue(), ^{
[scrollView setContentOffset:CGPointZero animated:YES];
});
}
}

最佳答案

这似乎就是你的答案。

scrollViewWillEndDragging:withVelocity:targetContentOffset: not working on the edges of a UISCrollView

当 ScrollView 位于默认内容偏移时,设置 scrollViewWillEndDragging:withVelocity:targetContentOffset:targetContentOffset 会出现 UIScrollView 错误。

关于ios - UIScrollView滚动ViewWillEndDragging : targetContentOffset: not working,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21764965/

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