目前我正在试图得到这个工作。 任何帮助表示赞赏。
我有一个自定义UITableViewCell
具有UITextField
内。 当我选择表格单元格,我想做出UITextField
第一个响应者。
然而[textField becomeFirstResponder];
返回false。
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
UITableViewCell *cell = [self tableView:tableView cellForRowAtIndexPath:indexPath];
UITextField *textField;
for (UIView *view in [cell subviews]) {
if ([view isMemberOfClass:[UITextField class]]) {
textField = ((UITextField *)view);
}
}
[textField becomeFirstResponder];
}
根据要求,文本框的初始化。 这是在做UITableViewCell
子类:
- (id) initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier {
self = [super initWithStyle:style reuseIdentifier:reuseIdentifier];
if (self) {
// Init Textfield
_textField = [[UITextField alloc] init];
_textField.backgroundColor = [UIColor clearColor];
_textField.delegate = self;
[self addSubview:_textField];
}
return self;
}
Answer 1:
如果你有一个自定义单元格,那么你可以做这样的事情:
@implementation CustomCell
#pragma mark - UIResponder
- (BOOL)canBecomeFirstResponder
{
return YES;
}
- (BOOL)becomeFirstResponder
{
return [self.textField becomeFirstResponder];
}
@end
然后里面的表视图代表:
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
UITableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath];
if ([cell canBecomeFirstResponder]) {
[cell becomeFirstResponder];
}
}
Answer 2:
给tag
每个UITextField
和和使用下面的代码:
UITableViewCell* cell = (UITableViewCell*)sender.superview.superview;
UITextField *txtField = (UITextField*)[cell viewWithTag:tag];
[txtField becomeFirstResponder];
在didSelectRowAtIndexPath
的方法。
它的工作非常好.. :)
Answer 3:
我相信你需要设置你textField
的delegate
财产。
添加textField.delegate = self;
你的方法,你打电话之前[textField becomeFirstResponder]
Answer 4:
我想你应该包括创建单元格时文本字段变量值:
- (id) initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier {
self = [super initWithStyle:style reuseIdentifier:reuseIdentifier];
if (self) {
// Init Textfield
_textField = [[UITextField alloc] init];
_textField.backgroundColor = [UIColor clearColor];
_textField.delegate = self;
_textField.tag = 999;
[self addSubview:_textField];
}
return self;
}
而就在didSelectRowAtIndexPath方法方法使用标记值恢复对象:
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
UITableViewCell *cell = [self tableView:tableView cellForRowAtIndexPath:indexPath];
UITextField *textField = (UITextField*)[cell viewWithTag:999];
if (![textField isFirstResponder]){
[textField becomeFirstResponder];
}
}
我已经包括验证来控制,如果文本框已经是第一个响应者。
希望它能为你期望
Answer 5:
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
UITableViewCell *cell = [self tableView:tableView cellForRowAtIndexPath:indexPath];
UITextField *textField;
for (id subV in [cell subviews]) {
if ([subV isKindOfClass:[UITextField class]]) {
textField = (UITextField *)subV;
[textField becomeFirstResponder];
break;
}
}
}
我认为这将是对你有所帮助。
Answer 6:
更新了答案来自@乔希 - fuggle使用雨燕2.2。
import Foundation
import UIKit
class CustomTableCell:UITableViewCell {
@IBOutlet var textValue: UITextField!
override func canBecomeFirstResponder() -> Bool {
return true
}
override func becomeFirstResponder() -> Bool {
return self.textValue.becomeFirstResponder()
}
}
这是在您的表视图代表:
func tableView(tableView: UITableView, didSelectRowAtIndexPath indexPath: NSIndexPath) {
let cell = tableView.cellForRowAtIndexPath(indexPath)
if ((cell?.canBecomeFirstResponder()) != nil) {
cell?.becomeFirstResponder()
}
}
Answer 7:
你可以这样做:
class CustomCell: UITableViewCell {
@IBOutlet weak var textField: UITextField!
override func awakeFromNib() {
super.awakeFromNib()
let tapGesture = UITapGestureRecognizer(target: self, action: #selector(contentViewTapped))
self.contentView.addGestureRecognizer(tapGesture)
}
@objc func contentViewTapped() {
_ = self.textField.becomeFirstResponder()
}
}
Answer 8:
[self.titleLab performSelector:@selector(becomeFirstResponder)withObject:无afterDelay:0.2];
文章来源: UITextField inside UITableViewCell: becomeFirstResponder in didSelectRowAtIndexPath