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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 18, 20262026-05-18T08:52:42+00:00 2026-05-18T08:52:42+00:00

I have an UIImageView in an UIScrollView and I have some trouble with the

  • 0

I have an UIImageView in an UIScrollView and I have some trouble with the contentOffset property. From Apple’s reference, this is defined as:

contentOffset: The point at which the origin of the content view is offset from the origin of the scroll view.

For example, if the image is at the upper left corner of the screen as below then the contentOffset would (0,0):

   _________
   |IMG    |
   |IMG    |
   |       |
   |       |
   |       |
   |       |
   ---------

For device rotation I have the following setting:

 scrollView.autoresizingMask = (UIViewAutoresizingFlexibleWidth |
       UIViewAutoresizingFlexibleHeight);

 imageView.autoresizingMask = (UIViewAutoresizingFlexibleWidth |
       UIViewAutoresizingFlexibleHeight);

 imageView.contentMode = UIViewContentModeCenter;  
    scrollView.contentMode = UIViewContentModeCenter;

This will make everything rotate around the center of the screen.
After rotating the screen, then screen will then look like this:

    ______________
    |       IMG  |
    |       IMG  |
    |            |
    --------------

My problem is that if I now read of contentOffset, it is still (0,0). (If I move the UIImage in landscape mode, the value of contentOffset is updated, but it is computed with respect to the wrong origin.)

Is there a way to compute the coordinates for the UIImage with respect to the upper left corner of the screen. contentOffset only seems to return this value when the screen is in the initial orientation of the view.

I have tried to read self.view.transform and scrollView.transform, but they are always the identity.

  • 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-18T08:52:42+00:00Added an answer on May 18, 2026 at 8:52 am

    Here is one way to do this: For the scrollview set

    scrollView.autoresizingMask =(UIViewAutoresizingFlexibleWidth 
                                         | UIViewAutoresizingFlexibleHeight);
    
    scrollView.contentMode = UIViewContentModeTopRight;
    

    The UIViewContentModeTopRight mode will keep the upper left corner at coordinate (0,0) even if the rotation behaviour is not correct. To get the same rotation behaviour as in UIViewContentModeCenter add

        scrollView.contentOffset = fix(sv.contentOffset, currentOrientation, goalOrientation);
    

    into willAnimateRotationToInterfaceOrientation. fix is the function

    CGPoint fix(CGPoint offset, UIInterfaceOrientation currentOrientation, UIInterfaceOrientation goalOrientation) {
    
    CGFloat xx = offset.x;
    CGFloat yy = offset.y;
    
    CGPoint result;
    
    if (UIInterfaceOrientationIsLandscape(currentOrientation)) {
    
        if (UIInterfaceOrientationIsLandscape(goalOrientation)) {
            // landscape -> landscape
            result = CGPointMake(xx, yy);
        } else {
            // landscape -> portrait
            result = CGPointMake(xx+80, yy-80);
        }
    } else {
        if (UIInterfaceOrientationIsLandscape(goalOrientation)) {
            // portrait -> landscape
            result = CGPointMake(xx-80, yy+80);
        } else {
            // portrait -> portrait
            result = CGPointMake(xx, yy);
        }
    }
    return result;
    }
    

    The above code will make the scrollview rotate around the center of the screen and also ensure that the upper left corder is always are coordinates (0,0).

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

Sidebar

Related Questions

I have a UIScrollView which has an UIImageView in it. I need to be
I have a uiscrollview and i am showing some dynamically generated uiimageview over it.
in my app i have UIImageView inside UIScrollview which i can zoom in and
I have a pretty big uiscrollview (1700p) which contains a uiimageview as the background,
I have a UIImageView in a UIScrollView in another UIScrollView (based on Apple's PhotoScroller
I have UIScrollView and number of objects (UIView compositions) with UIImageViews inside them. Some
I have a UIImageView that is housed inside a UIScrollView . The image in
So i have a UIScrollview with UIImageView set with a button, I want to
I have put an UIImageView and a UITextView in a UIScrollView. The result is
I have a UIScrollview with a UIImageview inside it showing a floor plan. I

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.