Hey. I was wondering, what am I doing wrong here. I want to show a UIImageView as a subView to a UIAlertView. Please help... Thanks:
myAlert = [[UIAlertView alloc] initWithTitle:nil
message:@"Welcome"
delegate:nil
cancelButtonTitle:@"Ok"
otherButtonTitles:nil];
[myAlert show];
[myAlert addSubview

riginalPhoto];
[originalPhoto setFrame:CGRectMake(320, 109, 0, 0)];
//[originalPhoto.frame.size CGRectMake(320, 109, 0, 0]);
[myAlert release];
[originalPhoto release];