I am developing a wrapper application for a site. Basically, it opens mobile version of a site in UIWebView. Some links on the site point to PDFs.
When the same site is opened in Safari and a link to PDF is tapped a nice black stripe with “Open in iBooks” is shown over the PDF. Like on the picture below:

How could I implement the same looking stripe in my app?
EDIT:
I am not asking about how to create a black button on translucent background.
I am interested in reproducing the whole workflow:
- User navigates to a PDF
- A stripe (view) popups if and only if there is iBooks app (or any other PDF viewer) installed.
- Tapping a button in popup transfers document to that app and the app opens.
To check if iBooks is installed you can call:
You can present a list of of applications (why limit to iBooks only? 😉 ) using:
Note that this doesn’t work on the iOS Simulator unless you made an app that reads PDFs!
If you really want to only give the option to let the PDF to be opened in iBooks, you might want to try appending the file’s URL to the @”ibooks://” scheme or the one of the other two schemes that iBooks provide (which work for books in the iBook Store but I’m not sure if it also works for other URLs) which are @”itms-books://” and @”itms-bookss://”. You can then do something like: