diff --git a/README.md b/README.md index c1353c0..6673893 100644 --- a/README.md +++ b/README.md @@ -46,4 +46,17 @@ navigator.startApp.start([ function(error) { /* error */ console.log('47', error); }); -``` \ No newline at end of file +``` + + + +**Start application in iOS** + +```js +navigator.startApp.start("twitter://", function(message) { /* success */ + console.log(message); // => OK +}, +function(error) { /* error */ + console.log('47', error); +}); +```