Not certain if the subject is totally accurate.
Bottom line ... I'm looking for some guidance on how to approach this:
What I am working with is a UITabBarController app and for just one of the sibling UIViewControllers I want to create a GUI that presents the user with two columns. In the left columns I want to provide a Safari link and in the right column I want to provide some styled text (UIWebView) that serves as a lengthy description as to what the link on the left will talk about.
Do I want to provide the link via a UIButton:
Code:
[[UIApplication sharedApplication] openURL:theURL]
This is really a question about how I would arrange separate UIButtons in a vertical column to begin with.
Anyway, then I thought of a UINavigationController and how, according to the docs, can be uniquely substituted for one of the UIViewControllers managed by the UITabBarController ??
I apologize for the wordiness, but I'm in the middle of a random walk journey at this point.