1

我创建了一个可可应用程序,它有一个带有文本字段的窗口来获取用户输入,一个小的键盘图标按钮可以调出键盘查看器。当用户单击确定或取消按钮完成时,我想隐藏键盘查看器。我所做的如下:

//action for keyboard-icon button
-(IBAction)input:(id)sender
{
    [self toggleKeyboard:YES];
}

//action for Cancel button
-(IBAction)cancel:(id)sender
{
    [self toggleKeyboard:NO];
    [NSApp abortModal];
    [[self window] orderOut: self];
}

//action for OK button
-(IBAction)ok:(id)sender
{
    [self toggleKeyboard:NO];
    [NSApp stopModal];
    [[self window] orderOut: self];
}


-(void)toggleKeyboard:(BOOL)show
{
    NSDictionary *property = [NSDictionary dictionaryWithObject:(NSString*)kTISTypeKeyboardViewer
                                                  forKey:(NSString*)kTISPropertyInputSourceType];
    NSArray *sources = (NSArray*)TISCreateInputSourceList((CFDictionaryRef)property, false);

    TISInputSourceRef keyboardViewer = (TISInputSourceRef)[sources objectAtIndex:0];
    if (show == YES)
    {
        TISSelectInputSource(keyboardViewer);
    }
    else 
    {
        TISDeselectInputSource(keyboardViewer);
    }

    CFRelease((CFTypeRef)sources);

}

我可以成功启动键盘查看器,但 TISDeselectInputSource 无法始终隐藏它。

4

1 回答 1

0

可以以编程方式隐藏键盘查看器。不久前,我为我的媒体中心制作了一个 AppleScript,它将切换它。我不会包含显示它的部分,部分原因是您已经弄清楚了,但主要是因为我这样做的方式是调用一些我不记得从哪里得到它的可执行文件。

无论如何,这是 AppleScript:

tell application "System Events"
    if exists (process "Keyboard Viewer") then
        click (process "Keyboard Viewer"'s window 1's buttons whose subrole is "AXCloseButton")
    end if
end tell

这使用辅助功能,因此您需要打开“启用辅助设备的访问权限”才能使其工作。

请注意,同样的事情可以在 Objective-C / C++ 应用程序中使用 Accessibility API 来完成,您可以使用它来避免在应用程序中调用 AppleScript。

于 2013-06-13T22:59:11.230 回答