I'm working on an iPhone app that is a runners pace calculator. I'm using a collection view with a custom cell to display details about different run distances. If I update the run pace text value in a cell, I want the app to recalculate the estimated finish time for the other distances (displayed in the other cells). I'd like a recommendation of the best way to do that. I'm using Swift Version 5.0.1
I'm using UIPickerView to select the hours, minutes and seconds for the run pace. I have a Target/Action for the UITextField Editing Changed event in the cell. That gets invoked. But I'm not sure how I can reload the other cells from the current cell.
I originally hard coded all of the distances on a UIViewController and recalculated the estimated finish time in pickerView didSelectRow. I would prefer to use a list for the different distances hence the collection view.