Como abrir um arquivo no iBooks

Como posso abrir um livro no iBooks? Tentei o seguinte código, que funciona, mas pede ao usuário que escolha um aplicativo para abrir o arquivo:

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];

Eu quero que ele seja aberto diretamente no iBooks, sem solicitar isso ao usuári

Alguma dica?

questionAnswers(2)

yourAnswerToTheQuestion