Questions tagged [ibooks]

iBooks is an e-book application by Apple Inc.

iBooks is an e-book application by Apple Inc. for their iOS operating system and devices. It was announced in conjunction with the iPad on January 27, 2010.

283 questions
2
votes
1 answer

Open pdf file in iBooks from my site

I need put link to pdf files in my site with conditions..:) If is a iPad , i want save this pdf in iBooks library and open iBooks showing this file. Is this possible? Tks!
Bruno Leite
  • 1,403
  • 13
  • 17
2
votes
1 answer

Open Documents from iBooks in my application

Is it possible to open a document from iBooks in my application? I found only that: NSString *stringURL = @"itms-books:"; NSURL *url = [NSURL URLWithString:stringURL]; [[UIApplication sharedApplication] openURL:url]; but with this I can only open…
Bartosz Bialecki
  • 4,391
  • 10
  • 42
  • 64
2
votes
1 answer

Access to iBooks elements from iOS SDK?

I want to access to the elements listed in iBooks App (Books and/or PDFs). Exists some class or method that can help me to do that?
Ricardo Sotolongo
  • 723
  • 11
  • 29
2
votes
1 answer

inApp Purchase in iPhone application to get book from iBook store

I am working in one iPhone application in which I need to add inApp Purchase functionality. Now in the inApp Purchase I need to add around 20 books which are already listed in iBook store. Now when I pay using inApp purchase, the purchased book from…
AppAspect
  • 4,461
  • 2
  • 30
  • 46
2
votes
1 answer

UIDocumentInteractionController not displaying app based on UTI

I want to read .epub file in iBooks apps so I am using UIDocumentInteractionController to open.epub file in iBooks .Everything is working fin but I want to show only iBooks app instead of other apps in UIDocumentInteractionController so I added UTI…
Rushabh
  • 3,208
  • 5
  • 28
  • 51
2
votes
0 answers

Getting a LaunchServices error when trying to share to apple Books on ios

I am stuck on a problem, I'm trying to share from my app to Apple Books on iOS. When I perform the share action, the ActivityViewController acts like it is preforming the operation and everything appears to go well, however the shared file never…
2
votes
1 answer

Is it possible to open PDF Files directly in iBooks instead of Browser (deeplinking?)

Hello I World like to open PDFs directly in iBooks instead of get them Opened in Safari. So for example this would be my website: http://www.ti.com/lit/ds/symlink/sn74ls00.pdf When I Access this link it will Open in my browser. But i Want it to Open…
Salexes
  • 53
  • 1
  • 7
2
votes
0 answers

How to scroll to show search bar under navigation bar like iOS 11 iBook

When scrolling up and down, top is fixed like magnetic, but search bar can be shown if drag more. I guess Search bar does not attached to Tableview as 3rd screen shot. I record it as video to show scrolling https://youtu.be/3imNlLhlv8Q How to do…
dobiho
  • 1,025
  • 1
  • 11
  • 22
2
votes
2 answers

iBooks able to read Files in Other App's SandBox

I want to know if i can develop an app that would download books in epub format from a website and then it would be accessed by iBooks ( iPad app for Reading books ) to read that file. The issue in my view is that an application can access files…
Taimur Ajmal
  • 2,778
  • 6
  • 39
  • 57
2
votes
3 answers

how to save pdf from uiwebview in objective c

i want to save pdf to ibook from UIWebView in the app, the html in UIWebView can be multi page. i try using NSString *page = [self.lowWebview stringByEvaluatingJavaScriptFromString:@"document.body.outerHTML"]; NSString *path = [self…
Saeed-rz
  • 1,435
  • 1
  • 20
  • 38
2
votes
0 answers

Send PDF file from DocumentsDirectory to iBooks

I'm trying to send a downloaded pdf file from DocumentsDirectory to iBooks, and save it there. The code I used is: let url = URL(string: "itms-books://device_path_to_pdf_file/index.pdf") if UIApplication.shared.canOpenURL(url) { …
RFG
  • 2,880
  • 3
  • 28
  • 44
2
votes
0 answers

initial-letter doesn't show the correct font

I'm creating an ebook with calibre but I can't set a good drop cap because the letter doesn't follow the font-family rule in the css. Here's my code: p:first-of-type:first-letter { font-family: "Dearest" !important; initial-letter: 3; …
Cristian
  • 654
  • 1
  • 13
  • 30
2
votes
1 answer

iBooks library like effect

Can someone tell me how to achieve iBooks Library turning effect.(Not the pages). Could that be achieved via Core Animation perhaps?
matt
  • 21
  • 3
2
votes
1 answer

Open .ibooks file automatically from iOS application (Swift)

I want to open specific file in iBooks App. I'm using UIDocumentsIntractionController to send this file to iBooks App. My code: class ViewController : UIViewController { ... ... @IBOutlet var iBooksBtn: UIButton! @IBAction func…
pavel_s
  • 465
  • 1
  • 7
  • 27
2
votes
2 answers

Page Flip animation like iBooks in swift

I have been searching a lot about coding the view transition animation. But I am most interested on the book page flipping animation on the iBooks. May I know is there any available sources for that which is written in swift? Many Thanks
Clarence
  • 1,951
  • 2
  • 34
  • 49