gpt4 book ai didi

ios - ScrollView 滚动时如何检查 View 可滚动位置

转载 作者:行者123 更新时间:2023-11-29 05:43:24 29 4
gpt4 key购买 nike

我们通过使用 TextView 实现了粘出流广告功能。当 TextView 滚动时,我们在 TextView 文本中间显示添加的一个 View 。当 TextView 滚动并且添加的 View 从 View 中消失时。然后我们显示了另一个 View ,其内容与添加的 View 相同。它工作完美。但现在我的新要求是当用户滚动 TextView 并出现添加的 View 时。然后我们需要根据 View 外观显示第二个添加的 View 。就像添加的 View 只有 50% 出现在屏幕上一样,我们需要显示第二个 View 。现在我的问题是如何根据滚动位置检测 View 外观。用于隐藏或显示 View 。提前致谢

最佳答案

您必须使用 scrollViewDidScroll 委托(delegate)方法。您可以尝试以下操作:

func scrollViewDidScroll(_ scrollView: UIScrollView) {

// Table View Scroll Image
let viewContentOffset = textview.contentOffset
let viewContentSize = textview.contentSize
let viewBounds = textview.bounds.size

// Use Alpha value to manipulation
let bottomOffset = scrollView.contentSize.height - scrollView.bounds.size.height
let alpha = (scrollView.contentOffset.y / bottomOffset) * 2
}

使用 NSAttributedString 将图像添加到 TextView :

textView.text = "Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda."
let image = UIImage(named: "sampleImage.png");
let attachment = NSTextAttachment()
attachment.image = image
let attString = NSAttributedString(attachment: attachment)
textView.textStorage.insert(attString, at: textView.text.count/2)

关于ios - ScrollView 滚动时如何检查 View 可滚动位置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56357996/

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