I’m new to iOS and objective-C.
Before I dive down into this I’d like to know if it is possible for me to create a tableview of items that are each linked to a specific URL, so that when I click on an item it switches to a WebView with that specific URL.
Just need to know if this is possible using tableview or if I need to use something else. Thanks.
Yes, it’s possible. Just use a
UINavigationControllerand make a URL property in theUIViewControllerthat houses theUIWebViewand when an item in the table view is tapped, set the url property of the web view controller to the proper url and push that view controller to the navigation controller.