gpt4 book ai didi

cocoa - 辅助功能:ScrollView 自动滚动到点击 "TAB"时不可见的 View

转载 作者:行者123 更新时间:2023-12-03 16:08:56 26 4
gpt4 key购买 nike

有人可以让我知道当仅使用键盘的用户尝试使用“Tab”键在 ScrollView 中的不同 UI 元素之间导航时如何自动滚动 ScrollView 吗?当我按“TAB”键时,焦点会转移到 ScrollView 中存在的不同 UI 元素,但如果可见内容 View 中不存在 UI 元素,则焦点不会滚动。如何才能实现这一点。如有帮助,将不胜感激。谢谢。

最佳答案

解决方案A:创建NSWindow的子类并重写makeFirstResponder:。当第一响应者发生变化时,会调用 makeFirstResponder

- (BOOL)makeFirstResponder:(NSResponder *)responder {
BOOL madeFirstResponder = [super makeFirstResponder:responder];
if (madeFirstResponder) {
id view = [self firstResponder];
// check if the new first responder is a field editor
if (view && [view isKindOfClass:[NSTextView class]] && [view isFieldEditor])
view = [view delegate]; // the control, usually a NSTextField
if (view && [view isKindOfClass:[NSControl class]] && [view enclosingScrollView]) {
NSRect rect = [view bounds];
rect = NSInsetRect(rect, -10.0, -10.0); // add a margin
[view scrollRectToVisible:rect];
}
}
return madeFirstResponder;
}

解决方案 B:创建 NSTextField 和其他控件的子类并重写 becomeFirstResponder

- (BOOL)becomeFirstResponder {
BOOL becameFirstResponder = [super becomeFirstResponder];
if (becameFirstResponder) {
if ([self enclosingScrollView]) {
NSRect rect = [self bounds];
rect = NSInsetRect(rect, -10.0, -10.0); // add a margin
[self scrollRectToVisible:rect];
}
}
return becameFirstResponder;
}

关于cocoa - 辅助功能:ScrollView 自动滚动到点击 "TAB"时不可见的 View ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47810930/

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