Advertise Mobile SDKs Books Events Forum News Social Networking Support Us
Follow @iphonedevsdk on Twitter

Interface 2, Advanced iOS
Mockup & Code Gen
($9.99)

Make your own iPhone apps
and run them live!
(free)

Pic Frame Dynamo: Photo Editing
($0.99)

Abiliator
($1.99)

Want your application or service advertised on iPhone Dev SDK?

Go Back   iPhone Dev SDK Forum

View Single Post
Old 02-16-2010, 06:35 AM   #12 (permalink)
learningCentres
Registered Member
 
Join Date: Feb 2010
Posts: 24
learningCentres is on a distinguished road
Default

Quote:
Originally Posted by harrytheshark View Post
Try creating a new navigation based project, and see what's in that and how it works.
Think I've made it worse lol....

Doesn't want to load at all now...

my h file is

Code:
@interface LearningCentresViewController : UIViewController {
	
	UIViewController *navigationController;
	
}

@property (nonatomic, retain) UINavigationController *navigationController;

- (IBAction) EnglishOneButtonPressed:(id)sender;
- (IBAction) MathsOneButtonPressed:(id)sender;

@end
and m is

Code:
//
//  LearningCentresViewController.m
//  LearningCentres
//
//  Created by Charles Marsh on 16/02/2010.
//  Copyright __MyCompanyName__ 2010. All rights reserved.
//

#import "LearningCentresViewController.h"
#import "EnglishOneViewController.h"
#import "MathsOneViewController.h"

@implementation LearningCentresViewController
@synthesize navigationController;

- (IBAction)EnglishOneButtonPressed:(id)sender 
{
    EnglishOneViewController *englishOneViewController = [[EnglishOneViewController alloc] initWithNibName:@"EnglishOneViewController" bundle:nil];
    [self .navigationController pushViewController:englishOneViewController animated:YES];
    [englishOneViewController release]; 
}

- (IBAction)MathsOneButtonPressed:(id)sender 
{
    MathsOneViewController *mathsOneViewController = [[MathsOneViewController alloc] initWithNibName:@"MathsOneViewController" bundle:nil];
    [self .navigationController pushViewController:mathsOneViewController animated:YES];
    [mathsOneViewController release];
}





/*
// The designated initializer. Override to perform setup that is required before the view is loaded.
- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil {
    if (self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil]) {
        // Custom initialization
    }
    return self;
}
*/

/*
// Implement loadView to create a view hierarchy programmatically, without using a nib.
- (void)loadView {
}
*/


/*
// Implement viewDidLoad to do additional setup after loading the view, typically from a nib.
- (void)viewDidLoad {
    [super viewDidLoad];
}
*/


/*
// Override to allow orientations other than the default portrait orientation.
- (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 {
	// Release any retained subviews of the main view.
	// e.g. self.myOutlet = nil;
}


- (void)dealloc {
	[navigationController dealloc];
    [super dealloc];
}

@end
I thought I could make UINavigationController into a pointer type of *navigationController - but it now errors saying 'type of property "navigationController" does not match type of iVar "navigationController"???????

Last edited by learningCentres; 02-16-2010 at 06:57 AM.
learningCentres is offline   Reply With Quote
 

» Advertisements
» Online Users: 846
22 members and 824 guests
7twenty7, archemedis, bellissimo, Cee Oasis, chiataytuday, Clouds, coolman, Garnitomar, jPuzzle, manop_cs, mishti, mwyld, nestochi, PavloG, Robiwan, sefiroths, sigluca, Sophie100, tim0504, Trixlean2012, _MAK88_
Most users ever online was 1,387, 04-10-2012 at 04:21 AM.
» Stats
Members: 175,478
Threads: 94,040
Posts: 402,627
Top Poster: BrianSlick (7,978)
Welcome to our newest member, Garnitomar
Powered by vBadvanced CMPS v3.1.0

All times are GMT -5. The time now is 03:42 AM.
Powered by vBulletin® Version 3.8.0
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.