Как открыть файл на iBooks - PullRequest
1 голос
/ 06 марта 2012

Как открыть книгу на iBooks? Я попробовал следующий код, который работает, но просит пользователя выбрать приложение для открытия файла:

self.docController = [UIDocumentInteractionController alloc];

//leaves only the file name
NSString *bookFile = @"my-book.pdf";

NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *documentsDirectory = [paths objectAtIndex: 0];

NSString* filePath = [documentsDirectory stringByAppendingPathComponent: bookFile];

// Using the Book path
self.docController = [UIDocumentInteractionController interactionControllerWithURL:[NSURL fileURLWithPath:filePath]];

// setting the delegate
_docController.delegate = self;

// open the menu only if we find a valid application that can 
// open the file
BOOL isValid = [self.docController presentOpenInMenuFromRect:CGRectZero inView:self.view animated:YES];

Я хочу, чтобы он открывался прямо на iBooks, не спрашивая пользователя об этом.

Любые советы?

1 Ответ

3 голосов
/ 02 мая 2012

просто используйте это

NSURL *url = [NSURL URLWithString:stringURL];
[[UIApplication sharedApplication] openURL:url];

Где stringUrl - ваш filePath, с itms-books: в начале

См. Этот связанный вопрос Как запустить iBooks e-ридер программно на iPad?

...