I want to set the custom image as background for alert view.If i set the image view frame size as static, then it displayed properly. But i have passed the message contents are dynamically displayed, so some times the contents is small and some times it comes huge amount of data displayed in the alert view.So how can i set the image view frame size which depends on the alert view frame size.
Here my sample code,
UIAlertView *notesAlert = [[UIAlertView alloc] initWithTitle:@"" message:notes delegate:self cancelButtonTitle:@"Close" otherButtonTitles:nil];
UIImage *alertBoxImage = [UIImage imageNamed:@"AlertViewBG.png"];
UIImageView *_backgroundImageView = [[UIImageView alloc] initWithImage:alertBoxImage];
_backgroundImageView.frame = CGRectMake(0, 0, 282, 130);
_backgroundImageView.contentMode = UIViewContentModeScaleToFill;
[notesAlert addSubview:_backgroundImageView];
[notesAlert sendSubviewToBack:_backgroundImageView];
NSLog(@"The Alert view frame height %f and width %f", notesAlert.frame.size.height, notesAlert.frame.size.width);
// height 0.000000 and width 0.000000
[notesAlert show];
NSLog(@"After showing the Alert view frame height %f and width %f", notesAlert.frame.size.height, notesAlert.frame.size.width);
// height 173.800003 and width 312.399994
see my screen shot:

So how to set the image frame size which depends on the alert view frame? Please Help me out. Thanks.