I've done some research and haven't been able to find an answer to my question yet....
I currently have a View in my app that only has Labels, for example:
"Total Area: 100
-----Material A Area: 75
-----Material B Area: 25
Total....."
What I want to do with this is allow the user to interact with the "Total Area" Label. So when the user touches the label, the "Material" labels will hide themselves and the text below that will slide up, like:
"Total Area: 100
Total....."
And, of course, when the user touches the "Total Area" label again, the "material" labels will reappear.
I know that in Xcode there is a check box that you can check to Enable User Interaction, but I'm pretty lost on where to go from here. I'm guessing that I need to create my own class that will inherit from UILabel to handle the user input...? And I'm not sure about how to get the "sliding/hiding" to work. Any help would be appreciated. Thanks.