**PLEASE NOTE**: Unless **explicitly** stated, most of these plugins will *not* work with Cordova/PhoneGap 3.x.x out of the box. They will need updating before they can be used via the `plugin add` interface. #Cordova (iOS) plugins should be submitted here. The [/iPhone](https://github.com/phonegap/phonegap-plugins/tree/master/iPhone) folder should be preserved for use with projects still using [PhoneGap 1.4.1](https://github.com/phonegap/phonegap/tags) and before. * Added ActionSheet (iOS) plugin with Cordova support. * Added AdPlugin (iOS) plugin with Cordova support. * Added AppBlade (iOS) plugin with Cordova support. * Added AppiraterPlugin (iOS) plugin with Cordova support. * Added ApplicationPreferences (iOS) plugin with Cordova support. * Added AudioRecord (iOS) plugin with Cordova support. * Added Badge (iOS) plugin with Cordova support. * Added BarcodeScanner (iOS) plugin with Cordova support. * Added CalendarPlugin (iOS) plugin with Cordova support. * Added ChildBrowser (iOS) plugin with Cordova support. * Added DatePicker (iOS) plugin with Cordova support. * Added Diagnostic (iOS) plugin with Cordova support. * Added EmailComposer (iOS) plugin with Cordova support. * Added FileUploader (iOS) plugin with Cordova support. * Added GameCenter (iOS) plugin with Cordova support. * Added Globalization (iOS) plugin with Cordova support. * Added GoogleAnalytics (iOS) plugin with Cordova support. * Added InAppPurchaseManager (iOS) plugin with Cordova support. * Added Keychain (iOS) plugin with Cordova support. * Added LocalNotifications (iOS) plugin with Cordova support. * Added LowLatencyAudio (iOS) plugin with Cordova support. * Added MapKit (iOS) plugin with Cordova support. * Added MessageBox (iOS) plugin with Cordova support. * Added NativeControls (iOS) plugin with Cordova support. * Added NavigationBar (iOS) plugin with Cordova support. * Added NotificationEx (iOS) plugin with Cordova support. * Added OCRPlugin (iOS) plugin with Cordova support. * Added PayPalPlugin (iOS) plugin with Cordova support. * Added PickerView (iOS) plugin with Cordova support. * Added PowerManagement (iOS) plugin with Cordova support. * Added PrintPlugin (iOS) plugin with Cordova support. * Added ProgressHud (iOS) plugin with Cordova support. * Added PushNotification (iOS) plugin with Cordova support. * Added SMSComposer (iOS) plugin with Cordova support. * Added Screenshot (iOS) plugin with Cordova support. * Added SecureDeviceIdentifier (iOS) plugin with Cordova support. * Added ShareKitPlugin (iOS) plugin with Cordova support. * Added TabBar (iOS) plugin with Cordova support. * Added Testflight (iOS) plugin with Cordova support. * Added Twitter (iOS) plugin with Cordova support. * Added UAPushNotifications (iOS) plugin with Cordova support. * Added UniqueIdentifier (iOS) plugin with Cordova support. * Added VolumeSlider (iOS) plugin with Cordova support. * Added WebInspector (iOS) plugin with Cordova support. * Added card.io (iOS) plugin with Cordova support. * Added iCloudKV (iOS) plugin with Cordova support. * Added WizAnalytics (iOS) plugin with Cordova support. * Added WizAssets (iOS) plugin with Cordova support. * Added WizDevTools (iOS) plugin with Cordova support. * Added WizSplash (iOS) plugin with Cordova support. * Added WizUtils (iOS) plugin with Cordova support. * Added WizViewManager (iOS) plugin with Cordova support. * More added regularly. Please refer to the Plugin Upgrade Guides distributed in the [download](http://phonegap.com/download/) for the most current version. #Cordova Plugin Upgrade Guide This document is for developers who need to upgrade their Cordova plugins to a newer Cordova version. Starting with Cordova 1.5.0, some classes have been renamed, which will require the plugin to be upgraded. Make sure your project itself has been upgraded using the "Cordova Upgrade Guide" document. Upgrading older Cordova plugins to 2.0.0 1. Install Cordova 2.0.0 2. Follow the "Upgrading older Cordova plugins to 1.9.0" section, if necessary 3. No changes in plugin structure from 1.9.x 4. Change in import header use: in 2.0.0, Cordova projects use the CordovaLib project as a subproject, it now uses the CORDOVA_FRAMEWORK styled import like this:
#import instead of like this:
#import "CDV.h" So now in 2.0.0, Cordova import headers are unified. NOTE: The deprecated for 2.0.0 CDVPlugin methods verifyArguments and appViewController have been removed. ##Upgrading older Cordova plugins to 1.9.0 1. Install Cordova 1.9.0 2. Follow the "Upgrading older Cordova plugins to 1.8.0" section, if necessary 3. No changes in plugin structure from 1.8.x ##Upgrading older Cordova plugins to 1.8.0 1. Install Cordova 1.8.0 2. Follow the "Upgrading older Cordova plugins to 1.7.0" section, if necessary 3. No changes in plugin structure from 1.7.x ##Upgrading older Cordova plugins to 1.7.0 1. Install Cordova 1.7.0 2. Follow the "Upgrading older Cordova plugins to 1.6.0" section, if necessary 3. No changes in plugin structure from 1.6.x ##Upgrading older Cordova plugins to 1.6.x 1. Install Cordova 1.6.x 2. Follow the "Upgrading older Cordova plugins to 1.5.0" section, if necessary 3. See the 1.6.0 Plugin Notes section for new functionality available to plugins 4. The global "Cordova" (upper-case C) was renamed to "cordova" (lower-case c) to match the cordova-js Android implementation in 1.5.0 that is now common to Android, Blackberry and iOS. Please rename your calls to reflect the new lower-case c, or you can add a shim (which will support older versions) like so: 5. Wrap your plugin JavaScript in a temporary scope (self-executing function) - see "Temporary Scope" or this b. Inside your temporary scope, set a local var to the global PhoneGap/Cordova/cordova object, for the exec function var cordovaRef = window.PhoneGap || window.Cordova || window.cordova; // old to new fallbacks 6. Replace any PhoneGap or Cordova or cordova in your plugin JavaScript (within the temporary scope), with cordovaRef above. ##Upgrading older Cordova plugins to 1.5.0 1. Install Cordova 1.5.0 2. Replacemacrooccurrencesof"PHONEGAP_FRAMEWORK"with"CORDOVA_FRAMEWORK" 3. Replace import occurrences of "