// // SecondViewController.m // WebviewStuff // // Created by PLUC SeniorDesign on 3/16/15. // Copyright (c) 2015 PLUC SeniorDesign. All rights reserved. // #import "SecondViewController.h" #import "GlobalWebController.h" @interface SecondViewController () @property UIWebView *webview; @end @implementation SecondViewController - (void)viewDidLoad { [super viewDidLoad]; // Do any additional setup after loading the view. GlobalWebController *globalWeb = [GlobalWebController getInstance]; self.webview = globalWeb.web; [self.view addSubview:self.webview]; NSLog(@"viewDidLoad, 2nd view controller"); } -(void) viewDidAppear:(BOOL)animated { NSLog(@"viewDidAppear, 2nd view controller"); GlobalWebController *globalWeb = [GlobalWebController getInstance]; self.webview = globalWeb.web; [self.view addSubview:self.webview]; } - (void)didReceiveMemoryWarning { [super didReceiveMemoryWarning]; // Dispose of any resources that can be recreated. } - (void)webViewDidFinishLoad:(UIWebView *)webView { NSURLRequest *currentRequest = [webView request]; NSURL *currentURL = [currentRequest URL]; NSLog(@"2: Current URL is %@", currentURL.absoluteString); } /* #pragma mark - Navigation // In a storyboard-based application, you will often want to do a little preparation before navigation - (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender { // Get the new view controller using [segue destinationViewController]. // Pass the selected object to the new view controller. } */ @end