I have a picker view and when a user picks a certain value from picker view I want to hide certain textviews and labels together:
[label1] [----textview1----]
[label2] [----textview2----]
[label3] [----textview3----]
so what I want is:
if (picker value is equal to "someValue")
{
- hide label 2 and textview 2
- shift label 3 and text view 3 to be positioned below label 1 and textview1
}
I tried this solution where I change priorities and this solution also but still no luck. I need to hide the label and textview together at once.