plist1 is an array of 40 dictionaries, with 4 strings each. plist2 is also an array, but of 120 dictionaries with 2 strings each.
If I list all the teams in a hockey league in a table (populated from a certain key in plist1), say I choose the fifth one down. This pushes a new table. The 120 dictionaries in plist2 have two strings - each has one for a year of the league's history in order, and one for who won the championship that year. I want this second table to list only the years for which the the dictionary's second key is the same team name that was just selected in the first table, plist1. So, when I select team "5" from the first table, I'd expect to see only the years that team "5" won in the second table. The idea is that all the years will be present in plist2, but the irrelevant ones will be blocked in the actual table on-the-go.
How can I say "if the user selected team X, then show the years just for team X, not all the years."
Thank you!