I'm trying to put push three different webViews from a View Controller with three buttons in it using a Navigation Controller. Here's the view controller with the buttons' header:
@interface SocialButtons : UIViewController {
IBOutlet UIButton *twitterButton;
IBOutlet UIButton *linkedInButton;
IBOutlet UIButton *youTubeButton;
}
@property (nonatomic, retain) IBOutlet UIButton *twitterButton;
@property (nonatomic, retain) IBOutlet UIButton *linkedInButton;
@property (nonatomic, retain) IBOutlet UIButton *youTubeButton;
-(IBAction)pushTwitter:(id)sender;
-(IBAction)pushLinkedIn:(id)sender;
-(IBAction)pushYouTube:(id)sender;
@end
I'm trying to use the actions to push a webView Controllers, but I'm getting no reaction when the button is pressed. I have it set up to commit to the pushTwitter action upon being touched up inside. the action is defined as:
-(IBAction)pushTwitter:(id)sender {
Dg3_z_Z4_8AppDelegate *AppDelegate = (Dg3_z_Z4_8AppDelegate *) [[UIApplication sharedApplication] delegate];
TwitterWebView *wvController = [[TwitterWebView alloc] initWithNibName:@"TwitterWebView" bundle:[NSBundle mainBundle]];
[AppDelegate.socNavControl pushViewController:wvController animated:YES];
}
Then the web view (entitled TwitterWebView) is supposed to load, but it fails to even push to the next view. I have a feeling the issue is in the code above. Can anybody help me?