Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I wanted to understand how resizableImageWithCapInsets works so I found this image

enter image description here

The size of the image is 57x51 so I created the image like this

image = [[UIImage imageWithContentsOfFile:[[NSBundle mainBundle] 
pathForResource:@"PopoverViewBlackBackgroundArrowDown" ofType:@"png"]] 
resizableImageWithCapInsets:UIEdgeInsetsMake(25.0, 28.0, 25.0, 28.0)];

and the image view like this

UIImageView *backgroundImageView = [[UIImageView alloc] initWithImage:image];
backgroundImageView.frame = CGRectMake(0.0f, 0.0f, 210.0f, 110.0f);
[self.view addSubview:backgroundImageView];

But here's the result

enter image description here

It not looking like the traditional UIPopoverController. The arrow is getting resized too.

Do you have any idea why ?

Thanks for your answers.

share|improve this question
It looks like the popover itself is fine, but the problem is the arrow. Can't you get the arrow as a separate image view? The rest seems to be resizing correctly. Cap Insets basically allow you to keep the corners the same. In your example, the corners are indeed working as expected, but as the arrow section is central it's stretching the couple of pixels that lie in between the cap insets. – danielhanly.com Jun 8 '12 at 12:48
Well I extracted this image from the iOS Simulator so it looks like Apple works only with one PNG and not 2. So I wanted to know if there's a way to do so. – Dave Jun 8 '12 at 12:50

1 Answer

I think your issue is that the edge insets are set incorrectly. What you should try to do is move the left and right insets to sit out side of the arrow area.

At the moment you have given the stretchable area a width of 0, in the center of the image, so it is stretching the arrow in the middle at a single point. The top and bottom insets look okay so what you'll be aiming for is something like this:

resizableImageWithCapInsets:UIEdgeInsetsMake(25.0, 10.0, 25.0, 47.0)];

That is, a 10 px margin on the left and right of the image.

Hope that helps

share|improve this answer
It's not exactly what I want. Because doing so, the arrow won't be centered. – Dave Jun 8 '12 at 13:00
@Dave, the arrow on popovers isn't always centered either - it depends where it is presented from. – Brian Jun 8 '12 at 13:08
@Brian Correct but if my problem is the centered case – Dave Jun 8 '12 at 13:10
@Dave Hmm. Just had a look myself and you're right. The docs certainly suggest to me that my idea should work (a 9-Patch in Android works in a similar way, it might be worth looking in to this iOS library that duplicates the functionality : github.com/tortuga22/Tortuga22-NinePatch). Short of that you could do as somebody else suggested and break the image up into a few components. – Weaverfish Jun 8 '12 at 13:22

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.