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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 19, 20262026-06-19T00:03:51+00:00 2026-06-19T00:03:51+00:00

I have a textfield that when the user clicks on slides the keyboard up.

  • 0

I have a textfield that when the user clicks on slides the keyboard up. Then the scrollview adjusts so you can read what you are typing.

My problem is that once that is so, I want to let the user to continue scrolling on the screen. How can this be done?

  • 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-19T00:03:53+00:00Added an answer on June 19, 2026 at 12:03 am

    Part 1:

    The scroll view’s content size is not actually related to the size or position of the views it contains. If you want to change the size of the content view as well as the scroll view’s content, you need to call two different methods.

     CGSize newSize;
     UIScrollView *scrollView;
     // assume self is the content view
     CGRect newFrame = (CGRect){CGPointZero,newSize}; // Assuming you want to start at the     top-left corner of the scroll view. Change CGPointZero as appropriate
      [  scrollView setContentSize:newSize]; // Change scroll view's content size
      [self setFrame:newFrame]; // Change views actual size
    

    Part 2:

    setNeedsDisplay marks the entire view as needing display. To cause it to display only the visible part, you need to use setNeedsDisplayInRect:visibleRect.
    Assuming the view is at the top-left corner (its frame’s origin is 0) and the scroll view does not allow zooming, the visible rect can be found using the scroll view’s content offset and bounds size.

      CGRect visibleRect;
      visibleRect.origin = [scrollView contentOffset];
      visibleRect.size = [scrollView bounds].size;
      [self setNeedsDisplayInRect:visibleRect];
    

    You could also choose to draw a part of the visible rect if only part changes.

    And you can also look the following example :

    TPKeyboardAvoiding

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

Sidebar

Related Questions

If have an event that fires when a user clicks outside of text field,
for example, I have a textfield, that records the user name, after I click
I would like to have a text field that a user can enter a
I have got a performance problem about TextField.htmlText +=msg .And I know that TextField.appendText(msg)
I have a method that creates a local textfield and pops up the keyboard
I have a list of items that the user can select. I want it
I have a text field In that user can enter values from 1-10 at
I have a series of textfields and textboxes that a user can fill out,
I have a script that slides a div out of view when the user
In my view i have Textfield.If i move that TextField it should open iphone

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.