This is mainly a delegation question because I'm still learning and don't get it. I don't know how to go about creating the delegate I need.
I have a tabbed view controllerwith 2 views, let's call them view 1 and view 2. Then I have a settings view which is not part of the tabbed navigation and accessible by both view 1 and 2.
How do I go about changing the label of a UITabBarItem
from the settings view with a text field. You can change a UITabBarItem
by setTitle, but I don't know how to set up the delegation.
To give you perspective, View 1 and View 2 are actually Player 1 and Player 2. I want to give the user the option to change the PLayer 1 and PLayer 2 labels to their actual names via the settings screen.
Thanks in advance!