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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T06:08:19+00:00 2026-06-17T06:08:19+00:00

I have a UISearchBar that needs to be compressed (see screenshot) and then expand

  • 0

I have a UISearchBar that needs to be compressed (see screenshot) and then expand to a larger size when it is touched or isActive.

How would I go about doing this? Currently my search bar is placed in the view via IB.

thanks

UISearchBar screenshot

  • 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-17T06:08:20+00:00Added an answer on June 17, 2026 at 6:08 am

    I would suggest adding a NSNotifcation listener for the keyboard showing/hiding notifications and based on this adjust the UISearchBar frame:

    - (void)viewWillAppear:(BOOL)animated
    {
        [super viewWillAppear:animated];
    
        NSNotificationCenter *nc = [NSNotificationCenter defaultCenter];
        [nc addObserver:self selector:@selector(adjustFrame:) name:UIKeyboardWillShowNotification object:nil];
        [nc addObserver:self selector:@selector(adjustFrame:) name:UIKeyboardWillHideNotification object:nil];
    }
    

    We need to remove the listener when the view is going to disappear:

    - (void)viewWillDisappear:(BOOL)animated {
        [super viewWillDisappear:animated];
    
        NSNotificationCenter *nc = [NSNotificationCenter defaultCenter];
        [nc removeObserver:self name:UIKeyboardWillShowNotification object:nil];
        [nc removeObserver:self name:UIKeyboardWillHideNotification object:nil];
    }
    

    And now we need the 2 custom functions to adjust the frame:

    - (void)adjustFrame:(NSNotification *) notification {
        [UIView beginAnimations:nil context:NULL];
        [UIView setAnimationDuration:0.3];
        [UIView setAnimationBeginsFromCurrentState:YES];
    
        if ([[notification name] isEqual:UIKeyboardWillHideNotification]) {
            // revert back to the normal state.
            self.searchBar.frame = CGRectMake (100,50,100,self.searchBar.frame.size.Height);
        } 
        else  {
            //resize search bar
            self.searchBar.frame = CGRectMake (10,50,200,self.searchBar.frame.size.Height);    
    }
    
        [UIView commitAnimations];
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a subclass of UITableViewController. I have code that can add/remove a UISearchBar
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
I have a class that conforms to UISearchDisplayDelegate and contains a UISearchBar. This view
I have UISearchBar , UITableView , a web service which returns a NSMutableArray that
I have a ViewController with a subview that contains a UISearchBar . When I
I have a UIViewController that manages a UISearchBar and UITableView. I've read that Apple
I would like to have a UISearchBar on the top of my UITableView which
I have a UIView that contains your typical UITableView with a UISearchBar. It seems
I'm using ios5 storyboard and have a tablview with a uisearchbar that I'm using

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.