MacRuby: How to create an app that can be configured from the outside?
我有一个 MacRuby 应用程序,旨在由其他人定制和分发。该应用程序实际上只有一些可以自定义的东西,但我想找到一种方法来打包应用程序,以便人们可以运行脚本,指定一些配置选项,并让它设置应用程序配置,以便它已准备好分发给其他人。
例如,我有一个指向 URL 的字符串。我希望有人能够更改此 URL,而无需在 XCode 中打开项目,也无需重新构建(或重新编译),以便 Windows 或 Linux 上的某人可以进行此更改。
这样的事情可能吗?我是 MacRuby 和 Objective-C 的新手,所以可能有一个我不知道的明显解决方案。
我的解决方案:
我使用了一个名为
1 2 3 4 5 6 7 8 | <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE plist PUBLIC"-//Apple//DTD PLIST 1.0//EN""http://www.apple.com/DTDs/PropertyList-1.0.dtd"> <plist version="1.0"> <dict> <key>homepage</key> <string>http://google.com</string> </dict> </plist> |
我的 App Delegate 可以像这样访问它:
1 2 3 | config_path = NSBundle.mainBundle.pathForResource('AppConfig', ofType: 'plist') @config = load_plist File.read(config_path) # then access the homepage key like this: @config['homepage'] |
正如 jkh 所说,最简单的方法是使用 plist。例如,您可以将所需的自定义设置存储在项目根目录下的 Stuff.plist 中,并使用以下命令访问它:
1 | stuff = load_plist File.read(NSBundle.mainBundle.pathForResource('Stuff', ofType: 'plist')) |
或者,例如,如果 Stuff.plist 在您的 Resources 文件夹中(它可能应该在的位置)
1 | stuff = load_plist File.read(NSBundle.mainBundle.pathForResource('Stuff', ofType:'plist', inDirectory:'Resources')) |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE plist PUBLIC"-//Apple//DTD PLIST 1.0//EN""http://www.apple.com/DTDs/PropertyList-1.0.dtd"> <plist version="1.0"> <dict> <key>my_stuff</key> <dict> <key>favorite_color</key> <string>green</string> <key>first_car</key> <string>Reliant K</string> </dict> <key>his_stuff</key> <dict> <key>favorite_color</key> <string>blue</string> <key>first_car</key> <string>240D</string> </dict> </dict> </plist> |
您应该能够通过以下方式访问这些值:
1 | my_favorite_color = stuff[:my_stuff][:favorite_color] |
我实际上并没有在应用程序包中对此进行测试,但我确实使用 macirb 对其进行了测试。要自己尝试一下,您可以使用以下命令从 macirb 加载 plist 文件:
1 | stuff = load_plist File.read('/path/to/Stuff.plist') |
MacRuby 在 Kernel 上实现了 load_plist,但没有 write_plist 或类似的东西,但是 MacRuby 确实在 Object 上实现了 to_plist,所以任何东西都可以作为 plist 写入磁盘!
1 | File.open('/path/to/new_plist.plist','w'){|f| f.write(['a','b','c'].to_plist)} |
给你:
1 2 3 4 5 6 7 8 9 | <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE plist PUBLIC"-//Apple//DTD PLIST 1.0//EN""http://www.apple.com/DTDs/PropertyList-1.0.dtd"> <plist version="1.0"> <string>a</string> <string>b</string> <string>c</string> </array> </plist> |
现在用户可以直接通过 plist 定义自定义,并且已经构建的应用程序将在运行时读取这些值。请注意这一点,因为您不想意外
是的,像其他应用一样使用 CFPreferences。然后,您的用户可以使用"默认写入"命令(带有适合您应用的参数)来自定义其行为,而无需修改应用本身。