NSView 在 NSScrollView 中居中
如何像“预览”那样将 NSView 在 NSScrollView 中居中?
How do I center an NSView within an NSScrollView like the way "Preview" does?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
阅读 滚动视图编程指南部分介绍了滚动到特定位置。有顶部或底部的示例。您只需更改数学即可根据 NSView 的中间计算原点。像这样的东西:
Read the Scroll View Programming Guide section on scrolling to a specific position. There are examples there for top or bottom. You'd just change the math to calculate the origin based on middle of your NSView. Something like:
在斯威夫特中:
In Swift: