Just like UIApplication.openURL.

Is there an API to launch iBooks with an ISBN?

link|improve this question
feedback

3 Answers

up vote 15 down vote accepted

iBooks registers the itms-books: and itms-bookss: URL schemes, so you can launch iBooks programmatically, but the actual URL might not be an ISBN.

link|improve this answer
Thanks KennyTM. where can I find more documentation on this, specially the URL format ? – Sujee Maniyam Apr 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. – KennyTM Apr 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 – Mark May 30 '11 at 2:39
feedback

iBooks

NSString *stringURL = @"itms-books:";
NSURL *url = [NSURL URLWithString:stringURL];
[[UIApplication sharedApplication] openURL:url];

NSString *stringURL = @"itms-bookss:";
NSURL *url = [NSURL URLWithString:stringURL];
[[UIApplication sharedApplication] openURL:url];
link|improve this answer
Anyone know why there's ibooks and ibooksS... was that a typo in early versions? – steipete Nov 19 '11 at 12:44
feedback

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

itms-books://itunes.apple.com/de/book/marchen/id436945766

or

itms-books://itunes.apple.com/WebObjects/MZStore.woa/wa/viewMultiRoom?fcId=510054265&s=143443
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.