2012-03-06 3 views
1

Как открыть книгу на iBooks? Я попытался следующий код, который работает, но предлагает пользователю выбрать программу для открытия файла:Как открыть файл на 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]; 

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

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

ответ

Смежные вопросы