UIScrollView - 添加子视图,使其水平和垂直居中

发布于 2024-11-06 20:31:18 字数 97 浏览 0 评论 0原文

如何在代码中将 UIImageView 添加到 UIScrollView 以便它出现在中心。

滚动视图占据了很大的区域,UIImage 视图的大小平均约为 40%。

How do I add, in code, a UIImageView to a UIScrollView so that it appears in the center.

The scroll view fills a large area, the UIImage view is about 40% the size on average.

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

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

发布评论

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

评论(2

淡墨 2024-11-13 20:31:18

imageView.center=scrollView.center怎么样

How about imageView.center = scrollView.center

就是爱搞怪 2024-11-13 20:31:18

围绕...的一些事情怎么样?

int size = 20;

UIScrollView *scrollView = [[UIScrollView alloc] initWithFrame:CGRectMake(0, 0, 320, 480)];

UIImageView *imageView = [[UIImageView alloc] initWithFrame:CGRectMake((scrollView.center.x - (size / 2)), (scrollView.center.y - (size / 2)), size, size)];

[scrollView addSubview:imageView];

What about something around the lines of...

int size = 20;

UIScrollView *scrollView = [[UIScrollView alloc] initWithFrame:CGRectMake(0, 0, 320, 480)];

UIImageView *imageView = [[UIImageView alloc] initWithFrame:CGRectMake((scrollView.center.x - (size / 2)), (scrollView.center.y - (size / 2)), size, size)];

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