gpt4 book ai didi

NSScrollView scrollToTop

转载 作者:行者123 更新时间:2023-12-04 09:19:27 25 4
gpt4 key购买 nike

有谁知道将 NSScrollView 滚动到顶部的正确方法?我正在寻找与 UIView 的 scrollToTop 方法等效的方法。

到目前为止,这是我所拥有的,但在所有情况下都不完全正确

[self.contentView scrollToPoint:NSMakePoint(0, MAX(contentView.frameHeight, ((NSView*)self.documentView).frameHeight))];

最佳答案

更新 swift 5 :

如果您的文档 View 被翻转:

scrollView.documentView?.scroll(.zero)

除此以外:
if let documentView = scrollView.documentView {
documentView.scroll(NSPoint(x: 0, y: documentView.bounds.size.height))
}

关于NSScrollView scrollToTop,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11975434/

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