如何设置图像的初始位置(iPhone)

发布于 2024-11-19 05:59:03 字数 178 浏览 2 评论 0原文

我有一个 UIImageView 和一个 UIScrollView。它们都设置正确并且一切正常。但是,当加载视图时,它会将像素位置 (0,0) 作为起点(即视图位于图像的左上角)。如何设置它,以便仅在 viewDidLoad 上开始图像的像素位置是(1000,1000)?我不关心用户滚动或放大/缩小后会发生什么,

非常感谢。

I have a UIImageView along with a UIScrollView. They are both setup correctly and everything is working fine. However, when the view is loaded, it puts up pixel location (0,0) as the starting point (i.e. the view is top left of the image).. How do I set it up such that only on a viewDidLoad it starts at pixel location say (1000,1000) of the image? I do not care what happens after the user scrolls or zooms in/out

Much obliged.

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

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

发布评论

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

评论(1

饭团 2024-11-26 05:59:03
[UIScrollView setContentOffset:CGPointMake(1000.0, 1000.0)];
[UIScrollView setContentOffset:CGPointMake(1000.0, 1000.0)];
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文