当textfield在uitableview的单元格中时,touchesBegan不会被调用

时间:2015-01-19 10:07:47

标签: ios objective-c uitableview uitextfield touchesbegan

所以我有一个文本字段,我在.h文件中有UITextFieldDelegate。 我在.m文件中声明了文本字段:

UITextField * titletextfield

我将文本字段放在表格视图的一个单元格中。我将textfield委托设置为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;}

触摸开始从未被调用过:

-(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event{
NSLog(@"123");
[self.view endEditing:YES];
[super touchesBegan:touches withEvent:event];
NSLog(@"22");

}

当我取消选中从tableview启用的用户交互时,touchbegan函数开始被调用。但是,在这个cad中,我不能再关注文本字段了。 以前有人有同样的问题吗?谢谢!

1 个答案:

答案 0 :(得分:3)

这里发生的事情意味着当您启用UITableview“用户交互启用”属性时,UITableview的scrollview会观察所有触摸。此时UITableview的scrollview的所有子视图都会获得触摸事件(在这种情况下,您的uitextfield也是如此) ).so touchesBegan方法你的viewcontroller的视图永远不会调用。如果你禁用UITableview“用户交互启用”属性,那么所有触摸事件都不会被UITableview的scrollview观察到并被赋予viewcontroller的视图。这次将调用touchesBegan。