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 8552463
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T14:25:45+00:00 2026-06-11T14:25:45+00:00

I am using UISearchBar provided by the UISearchBar+SearchDisplayController in the Interface Builder, the search

  • 0

I am using UISearchBar provided by the UISearchBar+SearchDisplayController in the Interface Builder, the search bar is positioned on right of a view, and I need to to expand towards the left when it is activated, but the system seems to expand it towards the right(in my case, it is going beyond the screen), I tried to animate it when it is activated, but the system’s animation still happens and there is some odd looking animation.

Is there any way to solve this?

Thanks a lot!

  • 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-06-11T14:25:46+00:00Added an answer on June 11, 2026 at 2:25 pm

    Here is my answer to a similar question posted:here and here

    The key to a correct animation is to specify UIViewAnimationOptionLayoutSubviews as an option for the animation.

    Here is a my full answer to those similar questions:

    Usually you don’t want to put a search bar inside a toolbar, however, it seems you want to do something similar to what I did.

    So here is how I did it, it may be called a hack, but it works like a charm 🙂

    First you have to set it up in interface builder like this:

    enter image description here

    Notice that the search is not a child of toolbar, instead it is above.

    The search bar should have “clear color” background and flexible left, right and width autoresizing masks.

    You put a 1-pixel label with black background below the toolbar, ie. [x=0, y=44, width=320 or frame width, height=1], also flexible left, right and width autoresizing masks.This is to hide the one visible pixel you get, after the search display controller shows the table view. Try it without it to understand what I mean.

    You setup any tool bar items and be sure to have outlets for them, since you will be needing those.

    and now for the code …

    when you start searching:

    - (void)searchDisplayControllerWillBeginSearch:(UISearchDisplayController *)controller
    {
        // animate the search bar to the left ie. x=0
        [UIView animateWithDuration:0.25f animations:^{
            CGRect frame = controller.searchBar.frame;
            frame.origin.x = 0;
            controller.searchBar.frame = frame;
        }];
        // remove all toolbar items
        [self.toolbar setItems:nil animated:YES];
    }
    

    when you end searching

    - (void)searchDisplayControllerDidEndSearch:(UISearchDisplayController *)controller
    {
        // animate search bar back to its previous position and size
        // in my case it was x=55, y=1
        // and reduce its width by the amount moved, again 55px
        [UIView animateWithDuration:0.25f 
                              delay:0.0f
                            // the UIViewAnimationOptionLayoutSubviews is IMPORTANT,
                            // otherwise you get no animation
                            // but some kind of snap-back movement 
                            options:UIViewAnimationOptionLayoutSubviews 
                         animations:^{
                             CGRect frame = self.toolbar.frame;
                             frame.origin.y = 1;
                             frame.origin.x = 55;
                             frame.size.width -= 55;
                             controller.searchBar.frame = frame;
                         } 
                         completion:^(BOOL finished){
                             // when finished, insert any tool bar items you had
                             [self.toolbar setItems:[NSArray arrayWithObject:self.currentLocationButton] animated:YES];
                         }];
    }
    

    With this I get the following with a nice animation 🙂

    enter image description here

    enter image description here

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

Sidebar

Related Questions

I added a search bar in the UINavigationItem using the following code: UISearchBar *searchBar
i am creating the search bar and table view programatically using the following code
I have a search functionality using UISearchBar that occurs on-the-fly, so I think it
I am using a UISearchBar and i want to change the Search key's label
I have to search a word in an array using UISearchBar. for example i
I'm using the UISearchBar (but not the SearchDisplayController that's typically used in conjunction) and
I am using a UISearchBar and once the user taps the bar (and the
Hi I am using a searchDisplayController to filter through my search results. My code
I am using a NSPredicate to search numbers in the list using UISearchBar ,
Currently I am coding the search capability of a UISearchBar using data from a

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.