Have a tab bar controller with 4 views. the first View is the one I am having trouble with... It is a View Controller with a long list of buttons, and each button when pressed pulls in a web view of a pdf document with a back button that takes you back to the list of buttons again (confusing I know lol). This all works fine and can go forwards and backwards between the different pdf's....
HOWEVER...
When you press the back button returning you to the list of button, the tab bar has dissappeared???? Not sure why this is as I have not inputted any coding asking to hide the tab bar! HEEEEEEELLLLPPPP!!
Heres the code I used:
FirstViewController.h File...
#import <UIKit/UIKit.h>
@interface FirstViewController : UIViewController {
IBOutlet UIScrollView *scroller;
}
- (IBAction)view1:(id)sender;
- (IBAction)view2:(id)sender;
- (IBAction)view3:(id)sender;
- (IBAction)view4:(id)sender;
- (IBAction)view5:(id)sender;
- (IBAction)view6:(id)sender;
- (IBAction)view7:(id)sender;
- (IBAction)view8:(id)sender;
- (IBAction)view9:(id)sender;
- (IBAction)view10:(id)sender;
- (IBAction)view11:(id)sender;
- (IBAction)view12:(id)sender;
- (IBAction)view13:(id)sender;
- (IBAction)view14:(id)sender;
- (IBAction)view15:(id)sender;
- (IBAction)view16:(id)sender;
- (IBAction)view17:(id)sender;
- (IBAction)view18:(id)sender;
- (IBAction)view19:(id)sender;
- (IBAction)view20:(id)sender;
- (IBAction)view21:(id)sender;
@end
#import "FirstViewController.h"
#import "view1.h"
#import "view2.h"
#import "view3.h"
#import "view4.h"
#import "view5.h"
#import "view6.h"
#import "view7.h"
#import "view8.h"
#import "view9.h"
#import "view10.h"
#import "view11.h"
#import "view12.h"
#import "view13.h"
#import "view14.h"
#import "view15.h"
#import "view16.h"
#import "view17.h"
#import "view18.h"
#import "view19.h"
#import "view20.h"
#import "view21.h"
FirstViewController.m File...
@implementation FirstViewController
- (IBAction)view1:(id)sender
{
view1 *second =[[view1 alloc] initWithNibName:nil bundle:nil];
[self presentModalViewController:second animated:YES];
[view1 release];
}
- (IBAction)view2:(id)sender
{
view2 *second =[[view2 alloc] initWithNibName:nil bundle:nil];
[self presentModalViewController:second animated:YES];
[view2 release];
}
- (IBAction)view3:(id)sender {
view3 *second = [[view3 alloc] initWithNibName:nil bundle:nil];
[self presentModalViewController:second animated:YES];
[view3 release];
}
- (IBAction)view4:(id)sender {
view4 *second = [[view4 alloc] initWithNibName:nil bundle:nil];
[self presentModalViewController:second animated:YES];
[view4 release];
}
- (IBAction)view5:(id)sender {
view5 *second = [[view5 alloc] initWithNibName:nil bundle:nil];
[self presentModalViewController:second animated:YES];
[view5 release];
}
- (IBAction)view6:(id)sender {
view6 *second = [[view6 alloc] initWithNibName:nil bundle:nil];
[self presentModalViewController:second animated:YES];
[view6 release];
}
- (IBAction)view7:(id)sender {
view7 *second = [[view7 alloc] initWithNibName:nil bundle:nil];
[self presentModalViewController:second animated:YES];
[view7 release];
}
- (IBAction)view8:(id)sender {
view8 *second = [[view8 alloc] initWithNibName:nil bundle:nil];
[self presentModalViewController:second animated:YES];
[view8 release];
}
- (IBAction)view9:(id)sender {
view9 *second = [[view9 alloc] initWithNibName:nil bundle:nil];
[self presentModalViewController:second animated:YES];
[view9 release];
}
- (IBAction)view10:(id)sender {
view10 *second = [[view10 alloc] initWithNibName:nil bundle:nil];
[self presentModalViewController:second animated:YES];
[view10 release];
}
- (IBAction)view11:(id)sender {
view11 *second = [[view11 alloc] initWithNibName:nil bundle:nil];
[self presentModalViewController:second animated:YES];
[view11 release];
}
- (IBAction)view12:(id)sender {
view12 *second = [[view12 alloc] initWithNibName:nil bundle:nil];
[self presentModalViewController:second animated:YES];
[view12 release];
}
- (IBAction)view13:(id)sender {
view13 *second = [[view13 alloc] initWithNibName:nil bundle:nil];
[self presentModalViewController:second animated:YES];
[view13 release];
}
- (IBAction)view14:(id)sender {
view14 *second = [[view14 alloc] initWithNibName:nil bundle:nil];
[self presentModalViewController:second animated:YES];
[view14 release];
}
- (IBAction)view15:(id)sender {
view15 *second = [[view15 alloc] initWithNibName:nil bundle:nil];
[self presentModalViewController:second animated:YES];
[view15 release];
}
- (IBAction)view16:(id)sender {
view16 *second = [[view16 alloc] initWithNibName:nil bundle:nil];
[self presentModalViewController:second animated:YES];
[view16 release];
}
- (IBAction)view17:(id)sender {
view17 *second = [[view17 alloc] initWithNibName:nil bundle:nil];
[self presentModalViewController:second animated:YES];
[view17 release];
}
- (IBAction)view18:(id)sender {
view18 *second = [[view18 alloc] initWithNibName:nil bundle:nil];
[self presentModalViewController:second animated:YES];
[view18 release];
}
- (IBAction)view19:(id)sender {
view19 *second = [[view19 alloc] initWithNibName:nil bundle:nil];
[self presentModalViewController:second animated:YES];
[view19 release];
}
- (IBAction)view20:(id)sender {
view20 *second = [[view20 alloc] initWithNibName:nil bundle:nil];
[self presentModalViewController:second animated:YES];
[view20 release];
}
- (IBAction)view21:(id)sender {
view21 *second = [[view21 alloc] initWithNibName:nil bundle:nil];
[self presentModalViewController:second animated:YES];
[view21 release];
}
- (void)viewDidLoad
{
[scroller setScrollEnabled:YES];
[scroller setContentSize:CGSizeMake(320, 1228)];
[super viewDidLoad];
}
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
// Return YES for supported orientations
return (interfaceOrientation == UIInterfaceOrientationPortrait);
}
- (void)didReceiveMemoryWarning
{
// Releases the view if it doesn't have a superview.
[super didReceiveMemoryWarning];
// Release any cached data, images, etc. that aren't in use.
}
- (void)viewDidUnload
{
[super viewDidUnload];
// Release any retained subviews of the main view.
// e.g. self.myOutlet = nil;
}
- (void)dealloc
{
[super dealloc];
}
@end
Each Web View uses this code...
view1.h File...
#import <UIKit/UIKit.h>
@interface view1 : UIViewController {
IBOutlet UIWebView *webView;
}
@property (nonatomic, retain) UIWebView *webView;
- (IBAction)home:(id)sender;
@end
View1.m File...
#import "view1.h"
#import "FirstViewController.h"
@implementation view1
@synthesize webView;
-(IBAction)pdfView {
NSString *path = [[NSBundle mainBundle] pathForResource:@"Block_Heaters" ofType:@"pdf"];
NSURL *url = [NSURL fileURLWithPath:path];
NSURLRequest *request = [NSURLRequest requestWithURL:url];
[webView loadRequest:request];
[webView release];
}
- (IBAction)home:(id)sender
{
FirstViewController *second =[[FirstViewController alloc] initWithNibName:nil bundle:nil];
second.modalTransitionStyle = UIModalTransitionStyleFlipHorizontal;
[self presentModalViewController:second animated:YES];
}
- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
{
self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
if (self) {
// Custom initialization
self.hidesBottomBarWhenPushed = NO;
return self;
}
return self;
}
- (void)dealloc
{
[super dealloc];
}
- (void)didReceiveMemoryWarning
{
// Releases the view if it doesn't have a superview.
[super didReceiveMemoryWarning];
// Release any cached data, images, etc that aren't in use.
}
#pragma mark - View lifecycle
- (void)viewDidLoad
{
[super viewDidLoad];
NSString *path = [[NSBundle mainBundle] pathForResource:@"Block_Heaters" ofType:@"pdf" ];
NSURL *url = [NSURL fileURLWithPath:path];
NSURLRequest *request = [NSURLRequest requestWithURL:url];
[webView loadRequest:request];
// Do any additional setup after loading the view from its nib.
}
- (void)viewDidUnload
{
[super viewDidUnload];
// Release any retained subviews of the main view.
// e.g. self.myOutlet = nil;
}
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
// Return YES for supported orientations
return (interfaceOrientation == UIInterfaceOrientationPortrait);
}
@end
Cheers
Mike x