Skip to content
chenney edited this page Aug 15, 2015 · 1 revision

Welcome to the FixedInput wiki!

提供的接口方法:

1.navigator.fixedInput.showAndFocus(sendCallback, defaultVal);//显示输入框并聚焦调出键盘 2.navigator.fixedInput.show(sendCallback, defaultVal);//显示输入框 3.navigator.fixedInput.hide();//隐藏输入框

插件集成方法:

1.将FixedInput.h FixedInput.m两个文件拷贝到对应的phonegap ios plugin目录下 2.在staging/config.xml添加下面配置 <feature name="FixedInput"> <param name="ios-package" value="FixedInput" /> </feature> 3.将staging/www下面的fixed_input.js和cordova_plugin.js拷贝到你具体的项目目录里面 4.调用方法: navigator.fixedInput.showAndFocus(function(content){ alert(content); }, 'hello world');

Clone this wiki locally