Skip to content

Instantly share code, notes, and snippets.

@grantges
Created May 30, 2013 12:47
Show Gist options
  • Save grantges/5677589 to your computer and use it in GitHub Desktop.
Save grantges/5677589 to your computer and use it in GitHub Desktop.
Generating an Open In Menu from a custom button in Appcelerator Titanium
var win = Ti.UI.createWindow();
var menuView = Ti.UI.createView({width: Ti.UI.SIZE, height: TI.UI.SIZE});
win.add(menuView);
win.open();
Ti.UI.iOS.createDocumentViewer({url:'pathToYourFile.pdf'}).show({view: menuView});
@johan48191
Copy link

you have a TI in all capitals ;)

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