vm.$iosAlert('alert');
vm.$iosConfirm('confirm?');
vm.$iosPrompt({ text: 'prompt', placeholder: 'inputPlaceholder' });
vm.$iosRemind('remind');
vm.$iosAlertView({ title: 'insl', text: 'text', buttons: [ { text: 'label1', onClick: function(){ vm.$iosAlert('label1'); } }, { text: 'label2', onClick: function(){ vm.$iosAlert('label2'); } }, { text: 'label3', onClick: function(){ vm.$iosRemind({ text: 'label3', remindDuration: 1000 }); } } ] });