0
我有兩個Custom Cells
一個UITableView
。其中Custom Cells
包含一個UITextField
。自定義的UITableViewCell + resignFirstResponder
我在與按下返回按鈕時隱藏鍵盤問題。
- (IBAction)textFieldDoneEditing:(id)sender {
[sender resignFirstResponder];
}
通常我會用這個,但它永遠不會被調用。我將它與Editing Did End
事件連接起來。
是因爲我使用Custom Cell
?
有你設置的文本字段代表?該方法被稱爲textFieldDidEndEditing: – Otium 2012-04-20 01:20:12
是的。我設置了文本字段的代表。我想這就是爲什麼它不起作用。 – Backslash 2012-04-20 01:23:52