I have an UIAlertView which has an Button. By pressing that button I need to load a Camera controller(Image Picker) above the UIAlertView. Pressing cancel in ImagePicker will go back to UIAlertView of Previous view.
Any Help is Greatly appreciated. Thanks in Advance.
{
UIButton *aStartTimer = [[UIButton alloc]initWithFrame:CGRectMake(90, 170, 45, 45)];
[aStartTimer setImage:[UIImage imageNamed:@"timer.png"] forState:UIControlStateNormal];
[alertView addSubview:aStartTimer];
}
Thanks in advance