当文本字段位于 uitableviewcell 中时,不调用 touchesBegan
Posted
技术标签:
【中文标题】当文本字段位于 uitableviewcell 中时,不调用 touchesBegan【英文标题】:touchesBegan not called when textfield is in uitableview's cell 【发布时间】:2015-01-19 10:07:46 【问题描述】:所以我有一个文本字段,我在 .h 文件中有 UITextFieldDelegate。 我在 .m 文件中声明文本字段:
UITextField * titletextfield
我将文本字段放在表格视图的一个单元格中。我将文本字段委托设置为 self,
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
if (indexPath.row==0)
static NSString *CellIdentifier = @"Title";
UITableViewCell * cell =[tableView dequeueReusableCellWithIdentifier:CellIdentifier];
UILabel * label;
if (cell == nil)
cell=[[UITableViewCell alloc]initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:CellIdentifier];
cell.selectionStyle =UITableViewCellSelectionStyleNone;
label = [[UILabel alloc]initWithFrame:CGRectMake(5, 0, 90.0, cell.frame.size.height)];
label.text =@"sth :";
label.font=[UIFont systemFontOfSize:14.0];
label.textColor =[UIColor grayColor];
titletextfield =[[UITextField alloc]initWithFrame:CGRectMake(100, 0, cell.frame.size.width-100.0, cell.frame.size.height)];
self.titletextfield.delegate=self;
UIView *message = [[UIView alloc] initWithFrame:CGRectMake(0.0, 0.0, cell.frame.size.width, cell.frame.size.height)];
message.tag = 0;
message.backgroundColor =[UIColor clearColor];
[message addSubview:label];
[message addSubview:titletextfield];
[cell.contentView addSubview:message];
return cell;
touch begin 从未被调用过:
-(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
NSLog(@"123");
[self.view endEditing:YES];
[super touchesBegan:touches withEvent:event];
NSLog(@"22");
当我取消选中从 tableview 启用的用户交互时,开始调用 touchbegan 函数。但是,在这个 cad 中,我不能再将焦点放在文本字段上。 以前有人有同样的问题吗?谢谢!
【问题讨论】:
您在不同的 textView 上设置了委托:titletextfield 不是 self.titletextfield。 titletextfield.delegate = self; 【参考方案1】:这里发生的事情意味着当您启用 UITableview “用户交互启用”属性时,UITableview 的滚动视图会观察到所有的触摸。此时 UITableview 的滚动视图的所有子视图都会获得触摸事件(在这种情况下,您的 uitextfield 也).so touchesBegan 方法的 viewcontroller 视图永远不会调用。如果禁用 UITableview “用户交互启用”属性,则 UITableview 的滚动视图不会观察到所有触摸事件并提供给 viewcontroller 的视图。此时将调用 touchesBegan。
【讨论】:
我明白了。那么我该如何解决这个问题呢? 你的意思是你想要两个功能? 好的解决方案是“为 UITableview 和 UITextField 创建子类,在 .m 的挑逗文件中只需放置 - (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event [self.superview touchesBegan:touches withEvent:event]; 并再次运行,但它不是准确的解决方案。 有用的链接***.com/questions/8127721/…以上是关于当文本字段位于 uitableviewcell 中时,不调用 touchesBegan的主要内容,如果未能解决你的问题,请参考以下文章
如何在 UITableViewCell 中添加多行文本字段?
两个类相互引用/从它的委托方法中的 UITextField 访问 UITableViewCell?