I'm working on an iPad application and I'm using UIPopoverControllers. I'm at the part where the app needs to be branded and styled and i'm wondering how to change the color / tint of the UIPopoverController? Standard is dark blue but it needs to be another color..

is this possible?

Greets, Thomas

link|improve this question

63% accept rate
Btw, irc.freenode.net #ipaddev is the place to be. – Sneakyness Mar 31 '10 at 20:08
Hey Madhup were you able to customize the pop over controller of your app – sandy Oct 14 '10 at 11:01
feedback

8 Answers

up vote 0 down vote accepted

The iPad SDK is still under NDA; for a definitive answer you might have to ask in the Apple developer forums. Nothing I've seen, though, indicates that this is possible—do you see a tintColor property on UIPopoverController? Alert views, tab bars, sheets, and so on don't expose much in the way of appearance customization; as with those, if you want a custom-colored popover you're probably going to have to roll your own.

link|improve this answer
feedback

It's impossible for now.

It's what I call the "Box in a Box" model. You get control of the box inside of the box (the UIViewController inside of the UIPopoverController), but you have very limited control over the actual popover itself. Outside of the arrow direction and the size, you can't change much else. There are also options for a modal effect popover, which dims everything else when it shows up, but I haven't tried to get it working.

I'm sure you've noticed there is no UIPopover class by now.

The answer you want to hear:
If you really want to style one that bad, just write your own. It's really not that hard.

The link you want to click:
Cocoacontrols is an index of iOS and OSX components available on GitHub, they have some popover stuff.

link|improve this answer
2  
As of iOS5, you can now just subclass UIPopoverBackgroundView and return your subclass to popoverBackgroundViewClass. – steipete Mar 14 at 22:48
feedback

This is possible starting in iOS 5.0 by subclassing the abstract class UIPopoverBackgroundView and assigning the instance of your subclass to the popoverBackgroundViewClass property on your UIPopoverController instance. Unfortunately there is no tintColor property as the popover needs to use images for it's arrow and border in order to achieve smooth animations during dynamic resizing. You can learn more about how to customize the appearance of a UIPopoverController in the UIPopoverBackgroundView Class Reference

link|improve this answer
feedback

you could try this https://github.com/werner77/WEPopover

link|improve this answer
feedback

I know this is a lousy constructed answer, but I've just been playing with the UIPopoverController's views. They do exist.

The only way to access them is from your view that is sitting in the UIPopovercontroller.

I have a navigation controller so I follow this hierarchy

UIView *test = ((UIView *)[[[self.navigationController.view.superview.superview.subviews objectAtIndex:0] subviews] objectAtIndex:1]);
UIView *test2 = ((UIView *)[[[self.navigationController.view.superview.superview.subviews objectAtIndex:0] subviews] objectAtIndex:1]);
test.backgroundColor = [UIColor greenColor];
test2.backgroundColor = [UIColor greenColor];

This isn't exactly the end goal, but it is really close.

you'll find that the_view_in_the_popover.superview.superview (maybe just one superview if you are not reaching out from a navigation controller view) is a UIPopoverView. If you cast it as a UIView and treat it as a UIView you're not really breaking any rules. I guess that is really up to apple though.

link|improve this answer
that won't work too well - it'll just overlay a colored square behind the popover view. – David Schiefer Dec 28 '10 at 13:51
2  
You're right. I think my goal with my answer was just to help people dive into the hierarchy, I don't really have time right now to give a full solution. – maxpower Jan 3 '11 at 17:47
feedback

I try to trick it by customizing the viewcontroller inside the popover and then hiding the popover border using this code

UIView * border = [[insideViewController.view.superview.superview.superview subviews] objectAtIndex:0];
border.hidden = YES;

The app is actually still in development so I'm hoping other people will comment on this solution.

link|improve this answer
Very fragile. If Apple decides to change something on the popover view hierarchy this code will fall apart. – DarkDust May 9 at 11:44
feedback

Remove UIPopoverController border:

 NSArray* subviews = ((UIView*)[popupController.contentViewController.view.superview.superview.superview.subviews objectAtIndex:0]).subviews;
for(UIView *subview in subviews){
    [subview removeFromSuperview];
}
link|improve this answer
8  
Wow. This is the worst thing I read in a long time. If you do this kind of crazy hacking, at least add sanity checks if there is a subview at index 0. This stuff is basically poking in private API - crashes on iOS updates ensured. – steipete Mar 14 at 22:50
feedback

Throwing my hat in here;

I've leveraged UIPopoverBackgroundViews in iOS 5+ to add a simple tintColor property onto UIPopoverControllers.

PCPopoverController: https://github.com/pcperini/PCPopoverController

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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