Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have seen this kind of question a lot on the internet but it seems no one really knows the answer?

I am using QLPreviewController for displaying PDF documents. I first used a UIWebView but I was recommended to use QLPreviewController instead for performance reasons with bigger documents.

what I want is 4 custom UIBarButtonItem's in the top right (so where the print button is).

I managed to get a custom toolbar at the bottom, but that's not really what I want.

Considering that it is not possible to add custom button at the place of the print button, I still want to remove the printbutton and use the custom toolbar instead.

EDIT (Solution): I found the solution a while ago but didn't update this post so here is how I solved the problem:

I add al the buttons manually:

// Create a toolbar to have the buttons at the right side of the navigationBar
UIToolbar* toolbar = [[UIToolbar alloc] initWithFrame:CGRectMake(0, 0, 180, 44.01)];
[toolbar setTranslucent:YES];

// Create the array to hold the buttons, which then gets added to the toolbar
NSMutableArray* buttons = [[NSMutableArray alloc] initWithCapacity:4];


// Create button 1
button1 = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemSearch target:self action:@selector(button1Pressed)];
[buttons addObject:button1];

// Create button 2
button2 = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemCompose target:self action:@selector(button2Pressed)];
[buttons addObject:button2];

// Create button 3
button3 = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemBookmarks target:self action:@selector(button3Pressed)];
[buttons addObject:button3];

// Create a action button
openButton = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemAction target:self action:@selector(openWith)];
[buttons addObject:openButton];

// insert the buttons in the toolbar
[toolbar setItems:buttons animated:NO];

// and put the toolbar in the navigation bar
[[self navigationItem] setRightBarButtonItem:[[UIBarButtonItem alloc] initWithCustomView:toolbar]];
share|improve this question
RBFilePreviewer now supports the feature you are looking for without needing modification. – rbrown Aug 11 '11 at 18:08
Is my answer sufficient to be accepted and for the bounty? – rbrown Aug 13 '11 at 20:01
It is not really what I was looking for and i've got an other problem with the QLPreviewController now : stackoverflow.com/questions/7038438/… but I will except your answer because it was the best (and the only) one, and it helped me a bit. – Juzzz Aug 14 '11 at 10:12
cant under ios6, it is now a seperate app :: see stackoverflow.com/questions/12675378/… – Daij-Djan Nov 11 '12 at 15:19

1 Answer

up vote 9 down vote accepted
+50

Update:

This no longer works in iOS 6. Quick Look runs in another process using XPC. See here for more details. I don't foresee any way to customize QLPreviewController. The following answer remains for anyone interested for pre-iOS 6.


I answered an almost identical question the other day here. The question pertained to removing the print button, which isn't too hard. One thing to note about QLPreviewController is that it's not meant to be customized. I have built a subclass of QLPreviewController that can be customized. I've put it here on Github. It's designed to easily remove the action button, among other features too. It wouldn't take much effort at all to replace the button with a custom one.

The biggest thing to watch out for is that the action button is re-added to the navigation bar anytime a new document is displayed. You should notice this in my code. Anytime RBFilePreviewer removes the action button, you just need to re-add your custom buttons. To add your custom buttons, you should create a UIBarButtonItem that holds a custom view with four buttons in it. Then set the right bar button item as the custom UIBarButtonItem you created.

Update:

I've updated RBFilePreviewer to allow you to set a custom right bar button item right out-of-the-box. Just call -setRightBarButtonItem: on RBFilePreviewer and it just works.

share|improve this answer
Excellent work! However, is it possible to change the whole navigationItem tinColor (or whole background color)? I was unable to achieve that :( – Centurion Oct 24 '11 at 10:09
I just added the ability to set the tint color of both the navigation bar and the toolbar. You just need to pull the latest version.You can actually set the tint color without my latest addition, but you have to do it differently depending on whether you push in on the navigation stack or if you present it modally. My addition makes the two situations identical. – rbrown Oct 24 '11 at 21:20
Thanks, I take a look at that. Until now, I was able to implement that by subclassing QLPreviewController, overriding viewWillAppear method, traversing through self.view and searching for UINavigationBar view object, and then setting its tintColor :) – Centurion Oct 25 '11 at 7:58
I don't suppose this has been updated for iOS 6 at all has it? Apparently Apple changed the QLpreviewController navigation bar and where it's at or something – valheru Oct 4 '12 at 21:19
No, it has not been updated for iOS 6. Hopefully I can find time soon to figure out any new quirks. – rbrown Oct 4 '12 at 22:09
show 1 more comment

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.