I'm working on a game where you can "hire" developers to work for you. Basically I have 1 table view that holds all the possible employees you can hire, and another table view that holds the employees you have hired.
The issue is I have a third table view where you can "learn" different coding languages, which in turn change the amount of money each developer can earn.
What I'm trying to accomplish is when the player presses a button to learn a new coding language, to update a variable for the most recent coding language that has been learned, in turn effecting the amount of money made by the developer.
I've gotten everything to work, BUT in order to update all the labels I have, I need to reload the data in the Employees table view when the "learn" button is pressed in the other table view. Any suggestions??