Skip to content

Instantly share code, notes, and snippets.

@TooTallNate
Created May 6, 2011 00:59
Show Gist options
  • Save TooTallNate/958273 to your computer and use it in GitHub Desktop.
Save TooTallNate/958273 to your computer and use it in GitHub Desktop.
Example of displaying a notification on an iPhone with 'node-iOS'
var iOS = require('iOS');
iOS.createNotification({
header: 'node-iOS Rocks!',
message: 'How much does running \'node\' on your iPhone rock?',
defaultButton: 'A lot!',
alternateButton: 'It rocks my socks'
}, function(err, res){
if (err) throw err;
console.log(res);
});
@TooTallNate
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment