I have a table view with custom cells. Cells have an image view, a label and a progress view. What I want to achieve is to update progress view in a specific cell according to the event that fires. My idea is to find the cell by name label that is in the event and then update progress view. This may not be an efficient way but I couldn’t think of some other way. Other ideas are also appreciated. Thanks in advance.
Share
You could use a NSDictionary with the name as the key and the NSIndexPath as the object. Then to can look up the index path for a given cell using the name in the dictionary.