Skip to content

Instantly share code, notes, and snippets.

@alanleard
Created January 23, 2013 20:56
Show Gist options
  • Save alanleard/4613086 to your computer and use it in GitHub Desktop.
Save alanleard/4613086 to your computer and use it in GitHub Desktop.
simple calendar link for iOS
var text = Ti.UI.createTextArea({
value:'Event: Jan 25, 2012 at 5:00pm',
autoLink: Ti.UI.iOS.AUTODETECT_CALENDAR,
top:100,
enabled:false,
font:{fontSize:16}
});
var win = Ti.UI.createWindow({backgroundColor:'#fff'});
win.add(text);
win.open();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment