Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7013947
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T22:27:24+00:00 2026-05-27T22:27:24+00:00

I have a UISearchBar that is hooked up with a NSFetchedResultsController . It searches

  • 0

I have a UISearchBar that is hooked up with a NSFetchedResultsController.

It searches as the user enters text into the search bar. I notice for the first few letters it lags, but then it quickens up and their is no lag. Is there any way to reduce the initial lag and make the search very snappy?

- (void)filterResultsUsingString:(NSString *)filterString {
    self.billingSearchText = filterString;      

    NSFetchRequest *fetchRequest = [[NSFetchRequest alloc] init];
    NSSortDescriptor *sortDescriptor = [[NSSortDescriptor alloc] initWithKey:@"name" ascending:YES];
    NSArray *sortDescriptors = [[NSArray alloc] initWithObjects:sortDescriptor, nil];
    [fetchRequest setSortDescriptors:sortDescriptors];
    NSEntityDescription *entity = nil;
    if ([self.billingSearchCategory isEqualToString:@"icd9"]) {
         entity = [NSEntityDescription entityForName:@"ICD9" inManagedObjectContext:managedObjectContext];
    }
    else if ([self.billingSearchCategory isEqualToString:@"cpt"]) {
        entity = [NSEntityDescription entityForName:@"CPT" inManagedObjectContext:managedObjectContext];
    }

    [fetchRequest setEntity:entity];
    [sortDescriptors release];
    [sortDescriptor release];

    self.fetchedResultsController = [[NSFetchedResultsController alloc] initWithFetchRequest:fetchRequest managedObjectContext:managedObjectContext sectionNameKeyPath:nil cacheName:@"Root"];

    [fetchRequest release];
    NSPredicate *predicate =[NSPredicate predicateWithFormat:@"(name contains[cd] %@) OR (code contains[cd] %@)", self.billingSearchText, self.billingSearchText];
    [self.fetchedResultsController.fetchRequest setPredicate:predicate];
    NSError *error = nil;
    if (![[self fetchedResultsController] performFetch:&error]) 
    {
        NSLog(@"Unresolved error %@, %@", error, [error userInfo]);
        exit(-1);  // Fail
    } 

    [self.tableView reloadData];
}
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T22:27:25+00:00Added an answer on May 27, 2026 at 10:27 pm

    Based on the code youve posted I can see that you create a new FetchedResultsController each time the user changes the search string. That means that it is not the creation of the FRC thats causing the lag.

    Are you running the search query on the mainthread?
    That could be one reason for the lag.
    And that could also explain the first query lagging more than the subsequent ones. It might be because the query runs faster as the search string gets longer and possible results are narrowed down (and require less processing time).

    Id suggest that you implement a solution that waits 0.1-0.3 seconds after each keypress before performing a search. This reduces unnecessary search queries as the user types longer queries. And I would advice you to perform the search in a separate thread to avoid locking the GUI during the search. When the search thread is finished, you perform a callback to the mainthread and update the screen with the results.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I Have a search bar that searches an array, and updates a UITableView with
I have a UISearchBar that searches and displays results successfully. If I press the
I have a search functionality using UISearchBar that occurs on-the-fly, so I think it
How can i set a default text in the search bar that looks grey
I have a subclass of UITableViewController. I have code that can add/remove a UISearchBar
I have a class that conforms to UISearchDisplayDelegate and contains a UISearchBar. This view
I have an app that allows searches of an sql db by various fields
I have a UISearchDisplayController and UISearchBar hooked up to my ViewController via Outlets from
I have UISearchBar , UITableView , a web service which returns a NSMutableArray that
I have a UIViewController that manages a UISearchBar and UITableView. I've read that Apple

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.