We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
BH.tweet('Default text in the textarea field.');
Or, use a callback to tell whether or not the tweet sent:
BH.tweet('Default text in the textarea field.', function(e) { var alertMsg = Ti.UI.createAlertDialog(); if (e===true) { alertMsg.message = 'Sent!'; } else { alertMsg.message = 'Failed!'; } alertMsg.show(); });