UITableViewCell's textfield endediting not calling

453 Views Asked by At

UITableViewCell's UITextField's textFieldDidEndEditing not calling

 cell.txtExpenseTitle.delegate = self
    cell.txtExpensePrice.delegate = self
1

There are 1 best solutions below

0
On

First, check delegate and then this method calling properly

func textFieldDidEndEditing(textField: UITextField) {
   if textField == txtExpenseTitle {  

    }
   if textField == txtExpensePrice { 

    }
}