I have my first app halfway finished, but I am not sure how to proceed next. Basically, the app displays different categories and then displays information regarding the selected category. I have the array set up and the views switch when selected, but i don't know how to display different text with each category. I appreciate any responses and advice.
the first view is a list of items. once i select an item, a second view needs to show information about that specific selection. each item displays different information.
thus far, i have been able to create the list of selections, but i don't know how to populate the second view with the selection-specific information.
In IB, drag out a some UILabels (as many as you need, plus "description" labels as necessary). Hook them up to IBOutlets in your code, and then you can change their text by using the text property, as in
myLabel.text = @"An NSString goes here";
__________________
If I have helped you, please consider donating. I use PayPal. It would mean a lot to me!