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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T04:11:03+00:00 2026-05-24T04:11:03+00:00

I have a toolbar which I need to use when editing text, and when

  • 0

I have a toolbar which I need to use when editing text, and when not.

In previous apps, I’ve moved the toolbar manually (listening for notifications, etc.)

But I want to use inputAccessoryView… so in my viewDidLoad, I do

for (/*myTextFields*/) {
   textField.inputAccessoryView = keyboardToolbar;
}
[self.view addSubView:keyboardToolbar];

Which works fine, the toolbar appears, I click on a text field, toolbar slides up – all good.
But when I then hide the keyboard, inputAccessoryView drags my toolbar off the screen. Is there any way to tell the inputAcessoryView where it’s fixed location is? – Or do I have to go back to my old way of listening for notifications etc…?

  • 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-24T04:11:04+00:00Added an answer on May 24, 2026 at 4:11 am

    I solved this by listening for Notifications and moving the toolbar up… oh well.

    Something like this does the job:

    - (void)viewWillAppear:(BOOL)animated 
    {
        [super viewWillAppear:animated];
        /* Listen for keyboard */
        [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(keyboardWillShow:) name:UIKeyboardWillShowNotification object:nil];
        [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(keyboardWillHide:) name:UIKeyboardWillHideNotification object:nil];
    }
    - (void)keyboardWillShow:(NSNotification *)notification 
    {
        [keyboardToolbar setItems:itemSetFull animated:YES];
        /* Move the toolbar to above the keyboard */
        [UIView beginAnimations:nil context:NULL];
        [UIView setAnimationDuration:0.3];
        CGRect frame = self.keyboardToolbar.frame;
        frame.origin.y = self.view.frame.size.height - 210.0;
        self.keyboardToolbar.frame = frame;
        [UIView commitAnimations];
    }
    
    - (void)keyboardWillHide:(NSNotification *)notification 
    {
        [keyboardToolbar setItems:itemSetSmall animated:YES];
        /* Move the toolbar back to bottom of the screen */
        [UIView beginAnimations:nil context:NULL];
        [UIView setAnimationDuration:0.3];
        CGRect frame = self.keyboardToolbar.frame;
        frame.origin.y = self.view.frame.size.height - frame.size.height;
        self.keyboardToolbar.frame = frame;
        [UIView commitAnimations];
    }
    

    I guess input accessory view is literally just meant for something stuck on top of the keyboard 🙂

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

Sidebar

Related Questions

I have a shell which looks like toolbar and defines my main region (a
Hey guys, I currently have a root table view which has a toolbar at
I have written an Application Desktop Toolbar (a.k.a AppBar), it works great except for
I want to have a button on my toolbar that has a little down
Do anyone have good ideas of how to modify the toolbar for the WinForms
I have a ControlTemplate that is made up of a ToolBarTray and a ToolBar.
I have a UINavigationController. In its toolbar is a segmented control with two buttons.
I am writing a toolbar for IE(6+). I have used the various sample bars
Have just started using Visual Studio Professional's built-in unit testing features, which as I
I have GridPanel with toolbar on it with many buttons. All buttons can't stand

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.