I have a subclass of UITextField that is specific for processing date text. I have a tableviewcell that uses this text box:
let dateInput: DateTextField
Now the controller should initialize the text dateInput before displaying as follows:
cell.dateInput.text = "01/29/2016"
Now I want to be able to detect that the text has been changed from a subclass, so that I can update the internal date variable so that it synchronizes with the text.
I have implemented text field delegation methods, but it just catches the changes made by the user, not programmatically.
ios swift nsdate
Joe.b Jan 29 '16 at 9:53 on 2016-01-29 21:53
source share