Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个图像视图,其位置 (x:138和y:107) 不在屏幕中央。现在我不想计算这些点与水平线之间的角度,但我不知道该怎么做。
x:138
y:107
谁能告诉我更多关于这个的信息?
您可以执行类似的操作,其中 Start- 和 endpoint 是图像位置。
Example: CGPoint endPoint = CGPointMake(50, 100); CGPoint startPoint = CGPointMake(100, 100); float angleVal = (((atan2((endPoint.x - startPoint.x) , (endPoint.y - startPoint.y)))*180)/M_PI);