I'm trying to figure out the best way for me to use the text from a UITableViewCell to set/change a UILabel in it's parent view. And I'd like it to be done when the user taps on a row. For more clarity, here is a simplified physical representation:
From this:
https://i.stack.imgur.com/O9ipE.png
To this, when the user taps on the row:
https://i.stack.imgur.com/fmeIb.png
I was thinking I probably just need to use delegates & protocols but then how would I actually change the UILabel? Wouldn't that just pass the text back, instead of passing it back and changing the UILabel? Also, I don't know very much about unwind segues, but could I use one of those to do this instead?