gpt4 book ai didi

objective-c - 从 osx 中的代码更改键盘布局

转载 作者:行者123 更新时间:2023-12-03 17:24:29 25 4
gpt4 key购买 nike

我使用下面的代码来更改代码中的键盘布局,但出现在第二行的警告下方。

//warning
Assigning to 'TISInputSourceRef' (aka 'struct __TISInputSource *') from 'const void *' discards qualifiers
<小时/>
//code
CFArrayRef sourceList = TISCreateInputSourceList (NULL, false);
TISInputSourceRef wantedSource= CFArrayGetValueAtIndex(sourceList, 0);
TISSelectInputSource(wantedSource);

最佳答案

我认为您需要转换 CFArrayGetValueAtIndex 返回的值,该值的类型为 const void*:

TISInputSourceRef wantedSource = (TISInputSourceRef)CFArrayGetValueAtIndex(sourceList, 0);

关于objective-c - 从 osx 中的代码更改键盘布局,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10750951/

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