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.
如何像在 iOS 中一样将应用设置添加到 tvOS。我假设就像iOS下面的屏幕一样,您可以为自己的应用程序添加设置
Xcode 的 tvOS 部分中没有设置包,但您可以从 iOS 部分中选择设置包,这有点棘手,但它确实有效。
1. 文件 -> 新建 -> 文件
2. iOS -> 资源 -> 设置包
3. 编辑你的 Bundle Settings plist
4. 构建并运行
NB tvOS 和 Xcode 7.1 现在处于测试阶段,也许苹果会在稳定版本的 tvOS 部分添加“设置捆绑”项。
tvOS 设置包现在在 tvOS 资源部分中可用:
正如@pakizip 解释的那样,将其添加到您的项目中并编辑设置捆绑 plist 文件以添加自定义设置。
以下是 tvOS 的相关文档页面:
tvOS 首选项和设置
https://developer.apple.com/library/tvos/documentation/Cocoa/Conceptual/UserDefaults/Introduction/Introduction.html
实现 iOS 设置包
https://developer.apple.com/library/mac/documentation/Cocoa/Conceptual/UserDefaults/Preferences/Preferences.html