- 自定義cell上的textField輸入完成後光標怎麼自動跳到下一個
-
電話號碼輸入完成後,會自動創建一個新的cell 然後不用點擊textField就會出現光標可以直接輸入電話號碼
最佳回答:
[_tableView reloadData];
[self performSelector:@selector(showKeyBoard) withObject:nil afterDelay:0.01];
- (void)showKeyBoard {
NSIndexPath *indexPath = [NSIndexPath indexPathForRow:0 inSection:0];
HDFreeMessageCell *cell = [_tableView cellForRowAtIndexPath:indexPath];
[cell.customerPhoneTextField becomeFirstResponder];
}