0

我正在为文本字段完成自动完成文本字段功能。我已经完成了,但性能时间很慢,这意味着当我按下键盘上的任何字符时,首先字母正在缩放,然后一段时间后它会显示在文本字段中。实际上我的自动完成功能列表取自服务 url。需要的是,只要我在键盘上键入一个字符,我就需要它在几秒钟内显示出来。我知道在服务中检查它需要一些时间url 及其列表。但至少如果我能比现在更快地获得它,那将是 gud。

这是我正在处理的代码。

- (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;

        }
    }


}

- (void)searchAutocompleteEntriesWithSubstring:(NSString *)substring {

    NSString *urlString= [NSString stringWithFormat:@"http://221.190.132.116/services/AutoCompService.svc/GetEmpNames/?p=%@",substring];     
    NSURL *jsonUrl =[NSURL URLWithString:urlString];
    NSURLRequest *request = [NSMutableURLRequest requestWithURL:jsonUrl];
    NSOperationQueue *queue = [[NSOperationQueue alloc] init];
    [NSURLConnection sendAsynchronousRequest:request queue:queue completionHandler:^(NSURLResponse *response, NSData *data, NSError *error) {
    parser = [[NSXMLParser alloc] initWithData:data];
    currentHtmlElement=@"5";
    [parser setDelegate:self];
    [parser setShouldProcessNamespaces:NO];
    [parser setShouldReportNamespacePrefixes:NO];
    [parser setShouldResolveExternalEntities:NO];
    [parser parse];
    [parser release];


    if([arr4 count]!=0)
    {
         self.autocompleteUrls = [[NSMutableArray alloc] init];
         if(autocompleteTableView)
             [autocompleteTableView removeFromSuperview];
         autocompleteTableView = [[UITableView alloc] initWithFrame:CGRectMake(10, 110, 195, [arr4 count]*30) style:UITableViewStyleGrouped];
         autocompleteTableView.delegate = self;
         autocompleteTableView.dataSource = self;
         autocompleteTableView.scrollEnabled = YES;
         autocompleteTableView.backgroundColor = [UIColor lightTextColor];
         autocompleteTableView.rowHeight=28;
         autocompleteTableView.separatorStyle = UITableViewCellSeparatorStyleNone;
         [self.view addSubview:autocompleteTableView];
         [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 {

    UITableViewCell *selectedCell = [tableView cellForRowAtIndexPath:indexPath];
    CompanyName.text = selectedCell.textLabel.text;
    autocompleteTableView.hidden=YES;


}


}

我怎样才能交替完成这个功能?

4

2 回答 2

0

与其发送同步请求,不如发送一个异步请求,并在完成后让它更新表

   NSString *urlString= [NSString stringWithFormat:@"http://221.190.132.116/services/AutoCompService.svc/GetEmpNames/?p=%@",substring];     
   NSURL *jsonUrl =[NSURL URLWithString:urlString];       
   NSURLRequest *request = [NSMutableURLRequest requestWithURL:jsonUrl];
   NSOperationQueue *queue = [[NSOperationQueue alloc] init];
   [NSURLConnection sendAsynchronousRequest:request queue:queue completionHandler:^(NSURLResponse *response, NSData *data, NSError *error) {
       parser = [[NSXMLParser alloc] initWithData:data];
       /* parse as before */ 
       [autocompleteTableView reloadData];
   }];

您可能应该在发出新请求之前取消当前请求。

于 2012-12-10T10:58:48.430 回答
0

您可以使用NSURLConnectionhas 方法来异步执行请求。您只需给它一个委托或完成块,它会在请求完成时调用您。

试试这个例子http://x-techteam.blogspot.in/2011/10/asynchronous-web-service-client-using.html

于 2012-12-10T10:33:47.447 回答