I got a simple question :
In a tableView, i'm displaying a list of customCells. These cells contain labels, SegmentedControllers....
The labels, segmentedController and other cells attributes are declared in a specific class.
How could I, in the class where the list it updated, detect if the segmented controller of the cells are modified? In this class, when I do something like :
if (cell.segmentedControl == 1) { DO MY THINGS }
...nothing ever happens.
Has anybody an advice? :-)