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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 19, 20262026-05-19T16:45:13+00:00 2026-05-19T16:45:13+00:00

I have an overlay view (Which has self-drawn shapes) that I display over an

  • 0

I have an overlay view (Which has self-drawn shapes) that I display over an ImageView. I want the view to be movable, resizable, and rotatable. I could allow the user to move the overlay by dragging it from the middle, or resize it by dragging it from one of two sides (right or bottom). What I still could not do is to allow the user to rotate it by moving the left-top edge.

myView.transform = CGAffineTransformMakeRotation(angle * M_PI / 180);

But how can I calculate the angle based on user touches? Any ideas?

  • 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-19T16:45:14+00:00Added an answer on May 19, 2026 at 4:45 pm

    The easiest way is to use a UIRotationGestureRecognizer which gives you the rotation value as a property.

    If you can’t use a gesture recognizer, try something like this (untested):

    // Assuming centerPoint is the center point of the object you want to rotate (the rotation axis),
    // currentTouchLocation and initialTouchLocation are the coordinates of the points between 
    // which you want to calculate the angle.
    CGPoint centerPoint = ...
    CGPoint currentTouchLocation = ...
    CGPoint initialTouchLocation = ...
    
    // Convert to polar coordinates with the centerPoint being (0,0)
    CGPoint currentTouchLocationNormalized = CGPointMake(currentTouchLocation.x - centerPoint.x, currentTouchLocation.y - centerPoint.y);
    CGPoint initialTouchLocationNormalized = CGPointMake(initialTouchLocation.x - centerPoint.x, initialTouchLocation.y - centerPoint.y);
    
    CGFloat angleBetweenInitialTouchAndCenter = atan2(initialTouchLocationNormalized.y, initialTouchLocationNormalized.x);
    CGFloat angleBetweenCurrentTouchAndCenter = atan2(currentTouchLocationNormalized.y, currentTouchLocationNormalized.x);
    
    CGFloat rotationAngle = angleBetweenCurrentTouchAndCenter - angleBetweenInitialTouchAndCenter;
    

    See Wikipedia or do a Google search to learn more about polar coordinates and how to convert between cartesian and polar coordinate systems.

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

Sidebar

Related Questions

I have a map view which has overlay items on top of them. The
Ho I have two list view on a frame layout. I want one overlay
I have an overlay that I want to hide on mousedown outside it. Here
I want to have layout, which is similar by structure to Thunderbird classic view
I have a UITableViewController which has a UIView* called errorView that is used to
In my app, i have an overlay view, which is displayed when some processing
I have developed an application on the appstore that uses an overlay over the
I am using UIImagePickerController for my camera and have added an Overlay View Controller
I have an overlay that I created with a width of 700px and height
i have setup an overlay script to enable me to display an overlay popup

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.