I have placed a textfield inside a table view cell. Now my problem is i want to detect when any text written into that text field. In swift i always use closure for detecting changes in the text field inside the cell. I wonder how can i do so in objective c as well.
Detect when something written into a textfield inside a tableview cell in Objective C
You do it exactly the same way in either language, using the UITextFieldDelegate methods. textFieldShould change, clear, return etc. Not sure what a closure has to do with it.