Hello,
I'm using Xamarin with XCode Storyboards to build my app. Within my app I have a ViewController with a custom class. I have added a WebView to the storyboard and control dragged the web view to the .h file and created an outlet for that WebView. There is some code generated in the designer.cs file for the Outlet but I'm unsure where to go from here. The code generated for the outlook looks like this: MonoTouch.UIKit.UIWebView WebView { get; set; }. I would like to be able to access this WebView from the regular cs file so that I can add controls to the web view. How do I got about initializing the WebView in the regular cs file? I have seen how you create a WebView programmatically but I wasn't sure how to get the WebView to fit between my other elements. I was hoping that adding it to the storyboard would be easier but so far that doesn't appear to be the case. Any pointers or tutorials that you can point me to would be most helpful.