iphone视图中Y轴相反,如何像Y轴数学一样调整?

发布于 2024-11-18 14:49:17 字数 1042 浏览 4 评论 0原文

我想在iPhone的视图中放置两个点

这是我的代码

UIImageView *center;
center = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"point.png"]];
[center setFrame:CGRectMake(0, 0, 10, 10)];
float r_rect_center_x = [r_img frame].size.width/2;
float r_rect_center_y = [r_img frame].size.height/2;
[center setCenter:CGPointMake(r_rect_center_x,r_rect_center_y)];
[r_img addSubview:center];
[center release];

这是中心,我得到的结果中心点是(X:50,Y:60)

float point1_x = 60.0f;
float point1_y = 60.0f;
UIImageView *point1 = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"point.png"]];
[point1 setFrame:CGRectMake(0, 0, 10, 10)];
[point1 setCenter:CGPointMake(point1_x,point1_y)];
[r_img addSubview:point1];
[point1 release];

这是point1,我设置中心是X:60,Y:60

它应该看起来像这样 在此处输入图像描述

但它在模拟器上运行是这样的...... 在此处输入图像描述

如何调整 Y 轴上的 POINT1 中心???

非常感谢

韦伯。

I wanna shoe two point in a iphone's view

This is my code

UIImageView *center;
center = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"point.png"]];
[center setFrame:CGRectMake(0, 0, 10, 10)];
float r_rect_center_x = [r_img frame].size.width/2;
float r_rect_center_y = [r_img frame].size.height/2;
[center setCenter:CGPointMake(r_rect_center_x,r_rect_center_y)];
[r_img addSubview:center];
[center release];

This is center, I got result center point is (X:50,Y:60)

float point1_x = 60.0f;
float point1_y = 60.0f;
UIImageView *point1 = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"point.png"]];
[point1 setFrame:CGRectMake(0, 0, 10, 10)];
[point1 setCenter:CGPointMake(point1_x,point1_y)];
[r_img addSubview:point1];
[point1 release];

This is point1 , I set the center is X:60,Y:60

It should be looks like this
enter image description here

But it run on the simulator is like this...
enter image description here

HOW TO ADJUST THE POINT1 CENTER IN Y-AXIS ???

Many Thanks

Webber.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

下壹個目標 2024-11-25 14:49:17

视图上有一个 setFlipped: 方法。只需调用它并传递 YES 即可。

[view setFlipped:YES]

There's a setFlipped: method on the view. Just call it and pass YES.

[view setFlipped:YES]
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文