所以我是移动开发的新手,但我已经接近使用HTML / CSS / JS和Cordova PhoneGap 3完成我的第一个IOS应用程序。我试图让用户通过iPhone的本机提供文本输入“设置“app(灰色齿轮图标)。我的应用程序将在“设置”应用程序中有自己的设置部分,用户可以在其中输入我的应用程序将使用的特定IP地址。
到目前为止我发现的是我可能需要安装PhoneGap插件并需要添加settings.bundle root.plist文件:
https://github.com/phonegap/phonegap-plugins/tree/DEPRECATED/iOS/ApplicationPreferences
Phonegap 3.0 iOS7 ApplicationPreferences Plugin
不幸的是,我没有足够的经验来做到这一点:/我希望一个有经验的乐于助人的兽医可以更明确地说出来并指出我正确的方向:
<script type="text/javascript" src="applicationPreferences.js"></script>
对不起所有漫长的菜鸟混乱..我只是为了我的生活找不到一个易于理解的指南,如何在网上任何地方这样做。我相信在我之后会有很多有这些相同问题的人,所以我非常感谢你的帮助。非常感谢。
答案 0 :(得分:10)
要创建一个可以在平台/ ios /中无需工作的设置包,请在项目中创建一个本地插件。
<强> ./ SRC / IOS / plugin.xml的强>
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://cordova.apache.org/ns/plugins/1.0"
id="com.example.application.settings"
version="0.4.2">
<name>Application Settings</name>
<description>My Application's Default Settings</description>
<license>Proprietary</license>
<keywords>preferences, settings, default</keywords>
<repo>https://github.com/</repo>
<platform name="ios">
<resource-file src="Settings.bundle" />
</platform>
</plugin>
在Xcode中,打开./src/ios
和create a new Settings.bundle
<强> ./ SRC / IOS / Settings.bundle / Root.plist 强>
<?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>PreferenceSpecifiers</key>
<array>
<dict>
<key>Title</key>
<string>API Server</string>
<key>Type</key>
<string>PSGroupSpecifier</string>
</dict>
<dict>
<key>AutocapitalizationType</key>
<string>None</string>
<key>AutocorrectionType</key>
<string>No</string>
<key>DefaultValue</key>
<string>https://api.example.com</string>
<key>IsSecure</key>
<false/>
<key>Key</key>
<string>name_preference</string>
<key>KeyboardType</key>
<string>Alphabet</string>
<key>Type</key>
<string>PSTextFieldSpecifier</string>
</dict>
</array>
<key>StringsTable</key>
<string>Root</string>
</dict>
</plist>
在项目的根目录下,运行cordova plugin add ./src/ios
。它会说Installing "com.dataonline.dolores.settings" for ios
。
使用me.apla.cordova.app-preferences从Javascript加载这些设置。
<强> ./ SRC /客户端/ preferences.js 强>
function ApplicationPreferences(){
var _this = this;
this.server = window.location.origin;
document.addEventListener('deviceready', function(){
function loaded(server){_this.server = server;}
plugins.appPreferences.fetch(loaded, function(){}, 'api_server');
});
};
applicationPreferences = new ApplicationPreferences();
// Later..
$.get(applicationPreferences.server + "/api/data");
修改从两个<source-file>
切换到一个<resource-file>