1

我试图-(BOOL) textFieldShouldClear:(UITextField *)textField在点击 UITextField 的清除按钮时调用。我已经设置了我的委托,并且 UITextField 的其他委托方法被正确调用,除了这个。清除按钮在 nib 文件中设置为“始终可见”。

编辑

仅供参考,当文本字段的文本发生更改时,我正在显示FPPopover 。如果我点击清除按钮而不显示弹出框,则清除按钮可以正常工作。但是,如果我在显示弹出框时尝试点击它,则不会调用委托方法。

代码片段

-(BOOL) textFieldShouldClear:(UITextField *)textField
{
    return YES;
}

- (IBAction)didChangeScripText:(id)sender {

    NSString *text = isPortrait ? symbolTextField.text : landsymbolTextfield.text;

    if(scripList.count == 0)
    {
        if([Logs sharedManager].scripData.count > 0)
            [self extractScrips];
        else
            return;
    }

    //        SAFE_ARC_RELEASE(popover);
//        popover=nil;

        //the controller we want to present as a popover
        if(controller == nil)
            controller = [[scripComboViewController alloc] initWithStyle:UITableViewStylePlain];

        if(controller.scripListFiltered.count > 0)
            [controller.scripListFiltered removeAllObjects];

        controller.delegate = self;
        if(popover == nil){
            popover = [[FPPopoverController alloc] initWithViewController:controller];
            popover.tint = FPPopoverDefaultTint;
        }

    controller.scripListFiltered = [NSMutableArray arrayWithArray:[scripList filteredArrayUsingPredicate:[NSPredicate predicateWithFormat:@"SELF beginswith[c] %@",text]]];
    NSLog(@"array is: %@",controller.scripListFiltered);

    if(controller.scripListFiltered.count == 0)
    {
        [popover dismissPopoverAnimated:YES];
        return;
    }
        //decide contentsize and arrow dir based on tableview height

        if(UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad)
        {
            popover.contentSize = CGSizeMake(300, 500);
        }
        else {
            popover.contentSize = CGSizeMake(200, 200);
        }

        //sender is the uitextfield
    float height = isPortrait ? portTable.frame.size.height : landTable.frame.size.height;
    if(height > 0)
        popover.arrowDirection = FPPopoverArrowDirectionDown;
    else
        popover.arrowDirection = FPPopoverArrowDirectionUp;

    if(![popover isModalInPopover])
        [popover presentPopoverFromView:sender];

    [controller reloadTable];

}

出了什么问题?谁能告诉我。谢谢。

4

2 回答 2

0

实际上问题是由于FPPopover。当它在其视图之外接收到触摸事件时,它会自行关闭,此时无法与外部控件进行交互。因此,如果点击清除按钮,它将用于关闭弹出窗口,然后我可以使用清除按钮。就这样。

于 2013-03-29T04:52:52.610 回答
-2

使用clearButtonMode的属性UITextField。不需要使用textFieldShouldClear方法。

textFiled.clearButtonMode = UITextFieldViewModeAlways;
于 2013-03-28T06:43:13.257 回答