Hi Sujee,
Seems you have solved the problem.
Do you know how to open a local file which I have already download to my App's application directory in iBook?
URL to my file looks like this:
file://localhost/var/mobile/Applications/51CC125E-5499-4E68-BF07-91DFFFC03B7D/Library/Application%20Support/82/index.pdf
so I expect I can call iBook to open my PDF using URL:
ibooks://localhost/var/mobile/Applications/51CC125E-5499-4E68-BF07-91DFFFC03B7D/Library/Application%20Support/82/index.pdf
End up it open iBook app only, but not my pdf file.
Anything's wrong in my URL?? – BowieFeb 14 at 4:21
Thanks KennyTM. where can I find more documentation on this, specially the URL format ? – Sujee ManiyamApr 7 '10 at 21:35
@linuxlover: If you have the iPad, try to open iBooks and copy a link in the iBookstore. If you see ISBN in the link, then it's good. Otherwise, we can only say the URL format is undocumented. – KennyTMApr 7 '10 at 22:30
3
Hi not sure about SO etiquette on an old question like this but is any further info available for this? Have launched url://itms-books on iPad and it opens iBooks to store. Cannot figure out url for specific book or PDF. Have also tried using md5sum as filename based on this link: gabrielgambetta.com/?p=40 – MarkMay 30 '11 at 2:39
@KennyTM what if the pdfs are placed in my code lets say i do file = [documentsDir stringByAppendingPathComponent:@"myPdfPathiPhone"];
NSString *stringURL = @"itms-books://";
NSURL *url = [NSURL URLWithString:[stringURL stringByAppendingString:file]];
[[UIApplication sharedApplication] openURL:url];
will that work? and which scheme to prefer? – Muhammad UmarJan 30 at 20:56
For your info, folks: all it takes is to add the itunes.apple.com URL, the same you can find in iTunes when browsing the BookStore on the Mac, but replace http with itms-books and b00m, you have it! Example