I think you can show it on the model view controller. Place the model manager on the tabbar control panel.
FullImageView*objFullImageView = [[FullImageView alloc] initWithNibName:@"FullImageView" bundle:nil]; objFullImageView.image = OriginalImage; UINavigationController *tempNav = [[[UINavigationController alloc] initWithRootViewController:objFullImageView] autorelease]; [objFullImageView release]; self.tabBarCtrl.modalPresentationStyle = UIModalPresentationPageSheet; [self.tabBarCtrl presentModalViewController:tempNav animated:YES];
FullImageView.h
{ UIImage *image; } @property(nonatomic, retain) UIImage *image;
FullImageView.m
@synthesize image; viewDidLoad /ViewWillApper { //Set image in your UIImageView }
iOS Dev
source share