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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T03:32:44+00:00 2026-06-13T03:32:44+00:00

I have a scrollview on my view in that i have all the sub

  • 0

I have a scrollview on my view in that i have all the sub views as shown bellow

UIView

  Scroll View

          1.ImageView
          2.Table view
          3.Text View

enter image description here

√√ To move the scroll view when keyboard appears / dismiss I have implemented logic in textview delegate metods as follows √√

- (void)textViewDidBeginEditing:(UITextView *)textView;
{
      //To move the view down 
      [UIView beginAnimations:nil context:NULL];
      [UIView setAnimationDelegate:self];
      [UIView setAnimationDuration:0.3];
      [UIView setAnimationBeginsFromCurrentState:YES];
      scrollView.frame = CGRectMake(scrollView.frame.origin.x, (scrollView.frame.origin.y - 120), scrollView.frame.size.width, scrollView.frame.size.height);
      [UIView commitAnimations];

}


- (void)textViewDidEndEditing:(UITextView *)textView 
{   
      //To move the view down 
      [UIView beginAnimations:nil context:NULL];
      [UIView setAnimationDelegate:self];
      [UIView setAnimationDuration:0.3];
      [UIView setAnimationBeginsFromCurrentState:YES];
      scrollView.frame = CGRectMake(scrollView.frame.origin.x, (scrollView.frame.origin.y + 120), scrollView.frame.size.width, scrollView.frame.size.height);
      [UIView commitAnimations];
}

√√ This method helps alot to move the view up/down with respcet to keyboard,

But here is the problem of scrolling.

User can not scroll all the view in presensec of key board. The view scrolls up to some position as follows, we can’t see the picture / first column of table.

enter image description here

If the user want to show the first column / profile pic in presence of keyboard doesn’t possible. how to fix theis issue.

  • 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-13T03:32:45+00:00Added an answer on June 13, 2026 at 3:32 am

    first set the scroll content like

    scrollView.contentSize=CGSizeMake(320, 600);
    

    and then animate there content when textView delegate method is called like

    - (void)textViewDidBeginEditing:(UITextView *)textView;
    {  
      [scrollView setContentOffset:CGPointMake(0, 120 ) animated:YES]; 
    }
    
    - (void)textViewDidEndEditing:(UITextView *)textView 
    {
     [scrollView setContentOffset:CGPointMake(0, 0 ) animated:YES]; 
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

In my app I have a scroll view and four table views. Each time
I have a scroll view with transparent background that covers most of the screen.
i have a scroll view in my application and i want that when the
I have a view controller with a scrollview with lots of text boxes, when
I have a full-screen UIButton to capture all touch events, so that the scrollView
I' have a view that contains several textViews an ImageView and a Button .
I have a UIView in a scrollview that contains about 100 subviews. The subviews
I have a scroll view which contains several objects like text fields,labels,switch etc..Now as
I have an application with a view that has text fields from the top
I have a view that has text fields ranging from the top of the

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.