I have a UIViewController in storyboard and I have it create the code:
@property (weak, nonatomic) IBOutlet UIWebView *webView2;
However, after my viewDidLoad method, I print out self.webView2, and it is (null). Why is it null? I need to add a URL to the webView, but it's null at this point.
IBOutlet. See Configuring the View in the Apple's Your First iOS App tutorial. Frankly, it probably makes sense for you to go through that tutorial before doing your own app. – Rob Mar 1 at 2:36