Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我向键盘目标添加了一个 Settings.bundle。但是当我在设置中添加键盘时,Settings.bundle 中的项目没有显示出来。我让它工作过一次。但这是在 Beta 4 中。
- 此致
在 iOS8.0.2 中,设置显示在 iOS 设置应用程序的 General->Keyboard 部分。但是,iOS 中的一个错误会阻止读取这些值。
解决方案是在您的包含应用程序中创建一个设置屏幕,并将设置读/写到共享容器,使用[[NSUserDefaults alloc] initWithSuiteName:@"group.your.group.name"]
[[NSUserDefaults alloc] initWithSuiteName:@"group.your.group.name"]
但请注意,此解决方案要求用户允许完全访问键盘设置,这目前不是一个非常用户友好的设置。