-1

在我的功能完成后,我开始编辑时会隐藏这个UITableViewUITextField

我已经采取了 static UITableView。我的问题是隐藏UITableView(CustomView)后我无法在下面访问UITextFields(在 UITableView 区域中存在)

- (BOOL)textField:(UITextField *)textField shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString *)string{
        if(textField==CompanyName)
        {
            autocompleteTableView.hidden = NO;
                NSString *substring = [NSString stringWithString:textField.text];
                substring = [substring stringByReplacingCharactersInRange:range withString:string];
                [self searchAutocompleteEntriesWithSubstring:substring];
                return YES;
                if([CompanyName.text length]==0)
                {
                    autocompleteTableView.hidden = YES;

                }
        }


        if([arr4 count]!=0)
        {
            self.autocompleteUrls = [[[NSMutableArray alloc] init]autorelease];
            viewForautoCompleteTableView = [[UIView alloc]initWithFrame:CGRectMake(10, 110, 195, 230)];

            if(autocompleteTableView)
                [autocompleteTableView removeFromSuperview];

            autocompleteTableView = [[UITableView alloc] initWithFrame:CGRectMake(0,0,195,150) style:UITableViewStyleGrouped];
            autocompleteTableView.delegate = self;
            autocompleteTableView.dataSource = self;
            autocompleteTableView.scrollEnabled = YES;
            autocompleteTableView.backgroundColor = [UIColor lightTextColor];
            autocompleteTableView.rowHeight=28;

            autocompleteTableView.backgroundView = nil;
            autocompleteTableView.backgroundColor = [UIColor whiteColor];


            autocompleteTableView.separatorStyle = UITableViewCellSeparatorStyleNone;
            [autocompleteTableView setSeparatorColor:[UIColor orangeColor]];
            [viewForautoCompleteTableView setFrame:CGRectMake(10,110 ,195,autocompleteTableView.frame.size.height)];


            [viewForautoCompleteTableView addSubview:autocompleteTableView];
            [self.view addSubview:viewForautoCompleteTableView];

            [autocompleteUrls removeAllObjects];
            for(int i=0;i<[arr4 count];i++)
            {
                NSString *curString = [[arr4 objectAtIndex:i] valueForKey:@"Name"];
                [autocompleteUrls addObject:curString];

            }
        }
    [autocompleteTableView reloadData];
}

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
    if(currentHtmlElement==@"5")
    {
        UITableViewCell *selectedCell = [tableView cellForRowAtIndexPath:indexPath];
        CompanyName.text = selectedCell.textLabel.text;
        autocompleteTableView.hidden=YES;
    }
}
4

1 回答 1

0

添加 textField 委托如下:它会帮助你..

- (void)textFieldDidEndEditing:(UITextField *)textField
{
    [self.view bringSubviewToFront:btnuserLocation];
    autocompleteTableView.hidden=true;
}

对于 UIbutton 的按钮更改控制事件,从 UIControlEventTouchDown 到 UIControlEventTouchUpInside 如下所示:

[btnuserLocation addTarget:self
                    action:@selector(showLocation:)
                forControlEvents:UIControlEventTouchUpInside];

每当从 textField 中移除焦点时,它将隐藏您的表格视图。并让您单击 tableView 后面的按钮。

于 2013-02-22T09:44:39.607 回答