So strange since some of the photos not displayed in iOS 7 but displayed well in iOS 6. I've both normal & @2x & -568@2x. It happens with IBOutlet UIImageView and also when I subclass UIAlertView.
For example:
EDIT:
alert = [[UIAlertTrapAlarm alloc] initWithCameraType:camType andFrame:[UIScreen mainScreen].bounds];
[[NSNotificationCenter defaultCenter] postNotificationName:CreateDistance object:nil userInfo:dictionary];
[alert addButtonWithTitle:NSLocalizedString(@"not_exists", nil)];
[alert addButtonWithTitle:NSLocalizedString(@"exists", nil)];
[alert show];
[alert changeMessageBox:distance description:trapDesc type:trapTypeString];
[alert showHideExistsNotExistsButtons:camType];
[alert showHideButtons];
// alert.imageViewBackground.image = [UIImage imageNamed:@"allert1"];
[alert.imageViewBackground setImage:[UIImage imageNamed:@"allert1.png"]];
[alert setNeedsDisplay];
[alert.screenView setNeedsDisplay];
I forgot to mention all subviews in my subclass UIAlertView not showing.