Advertise here




Advertise here

Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

Sign In with Google Sign In with OpenID
Please do not post the same thing multiple times. The board software automatically flags certain posts as needing moderator attention. This happens the most often for new users. I'm pretty sure this is made clear at the time you attempt to post. Posting the same thing over and over again just makes that many more posts the moderators have to weed through later. This makes us sad. Don't make us sad. If your post/thread doesn't appear, just wait a while. Don't post it again. If it hasn't shown up by the next day, then you can try again. I normally go through posts in the mornings, and try to check a few times throughout the day, but I'm not here 24/7. There will typically be a significant delay before posts are approved. Just be patient.

navigation based project switching views with buttons

learningtocodelearningtocode Posts: 25Registered Users
I currently have a navigation based project that I am having issues with. What I am trying to do is within each navigation page I want a button that will take me to new page view. Something that looks like this.

[ATTACH]3825[/ATTACH]

What am I missing??

Here is my code if it helps.

.h

#import


@interface Basics : UIViewController {

}

-(IBAction)newig:(id)sender;
-(IBAction)advanced:(id)sender;
@end


.m

#import "Basics.h"
#import "NewIG.h"
#import "Advanced.h"


@implementation Basics


-(IBAction)newig:(id)sender {
NewIG *second = [[NewIG alloc] initWithNibName:nil bundle:nil];
[self presentModalViewController:second animated:YES];
}

-(IBAction)advanced:(id)sender {
Advanced *second = [[Advanced alloc] initWithNibName:nil bundle:nil];
[self presentModalViewController:second animated:YES];
}
Screen shot 2011-12-12 at 11.00.22 PM.jpg
1 x 1 - 9K
Sign In or Register to comment.