Added Cordova 1.5 support - @RandyMcMillan 2012 Minor edits required for backwards support In ActionSheet.js replace instances of Cordova with PhoneGap
Example:
//PhoneGap.exec(callback, callback, service, action, [config]);
Cordova.exec(callback, callback, service, action, [config]);
Thanks to Olivier Louvignes for sharing this plugin with the PhoneGap/Cordova community!
PhoneGap ActionSheet Plugin
by Olivier Louvignes
DESCRIPTION
-
This plugin provides a simple way to use the
UIActionSheetnative component from IOS. It does comply with the latest (future-2.x) phonegap standards. -
Compared to the
iPhone/NativeControlsplugin, it is more documented & simpler to understand (only handle actionSheets). It does also provide new options (style). -
There is a
Sencha Touch 2.0plugin to easily leverage this plugin here
SETUP
Using this plugin requires iPhone PhoneGap.
- Make sure your PhoneGap Xcode project has been updated for the iOS 4 SDK
- Drag and drop the
ActionSheetfolder from Finder to your Plugins folder in XCode, using "Create groups for any added folders" - Add the .js files to your
wwwfolder on disk, and add reference(s) to the .js files as tags in your html file(s) - Add new entry with key
ActionSheetand valueActionSheettoPluginsinPhoneGap.plist/Cordova.plist
JAVASCRIPT INTERFACE
// After device ready, create a local alias
var actionSheet = window.plugins.actionSheet;
// Basic with title
actionSheet.create('Title', ['Foo', 'Bar'], function(buttonValue, buttonIndex) { console.warn('create', [this, arguments]); });
// Complex
actionSheet.create(null, ['Add', 'Delete', 'Cancel'], function(buttonValue, buttonIndex) { console.warn('create', [this, arguments]); }, {destructiveButtonIndex: 1, cancelButtonIndex: 2});
- Check source for additional configuration.
BUGS AND CONTRIBUTIONS
Patches welcome! Send a pull request. Since this is not a part of PhoneGap Core (which requires a CLA), this should be easier.
Post issues on Github
The latest code (my fork) will always be here
LICENSE
Copyright 2011 Olivier Louvignes. All rights reserved.
The MIT License
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
CREDITS
Inspired by :