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

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

It not looking like the traditional UIPopoverController. The arrow is getting resized too.
Do you have any idea why ?
Thanks for your answers.