I am creating an app to read PDF file. I'm using WebView to load the PDF file. Below is the code:
var wv = Ti.UI.createWebView({
backgroundColor:"gray",
border:1,
height:410,
url : "file.pdf"
});
win.add(wv);
I'm wondering if there is any way to get the page number of the PDF and to navigate page by page. I did not find any way to do this. Any help would be appreciated. Thanks in advance.