I am new to Cordova, but based on what I have seen, you may need to make sure Cordova has loaded. To call the plugin after Cordova has finished loading, do the following in your javascript file:
// Wait for Cordova to load
document.addEventListener("deviceready", onDeviceReady, false);
// Cordova is ready
function onDeviceReady() {
// As an example, you now have the device name, Cordova version, etc. available
alert('Device Name: ' + device.name);
alert('Device Cordova: ' + device.cordova);
alert('Device Platform: ' + device.platform);
alert('Device UUID: ' + device.uuid);
alert('Device Version: ' + device.version);
// Now call plugin, etc.
var v = cordova.PluginManager.exec(success, fail, service, action, args);
}
See http://docs.phonegap.com/en/2.0.0/cordova_device_device.md.html#Device for more information.
The Cordova documentation for iOS plugins provides additional detail.