I am very new to iOS
and overwhelmed with resources I find online. My use case is simple
a.) ViewController parent
has label called categoryLabel
. A tap on label category
opens a new view View 1
b.) View 1
, shows all groups. Lets says A, B, C
. This will be shown on table
c.) when user click on any group A, B or C
, a new view View 2
appears with all categories in that group. For example, user clicks on A
and on View 2
user sees categories A1, A2, A3
.
d.) Now when user clicks on any specific category, how does that goes back to ViewController parent
and assigns to categoryLabel
?
I do not know what is the best way to approach this design. Any guidance is very much appreciated