改变UIImageView的bounds.size.height的iOS行为

发布于 2024-12-08 09:58:12 字数 242 浏览 0 评论 0原文

在开始时 UIImageViewObj frame = CGRectMake(20, 350, 20, 1);

在接下来的代码中: [UIImageViewObj setBounds: CGRectMake(20, 350, 20, 200)];

在运行时更改 UIImageView 的边界高度,从 UIImageViewObj 的中心向上和向下发生变化,如何使变化发生从底部到顶部。

At start UIImageViewObj frame = CGRectMake(20, 350, 20, 1);

In code I do next:
[UIImageViewObj setBounds: CGRectMake(20, 350, 20, 200)];

Changing the bounds height of UIImageView at run time a change occurs from the center of a UIImageViewObj up and down, how to make change happen from the bottom to the top.

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

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

发布评论

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

评论(2

焚却相思 2024-12-15 09:58:12

要设置锚点,您只需执行

imageView.layer.anchorPoint = CGPointMake(0.5,0.5)

此操作即可将锚点设置为中间。如果您希望它位于左下角,

imageView.layer.anchorPoint = CGPointMake(0,1);

请确保将 Quazrtcore 添加到您的框架中

希望我正确理解您的意思。

To set the anchor point you can just do

imageView.layer.anchorPoint = CGPointMake(0.5,0.5)

this will set the anchor point to the middle. if you want it in the left bottom part

imageView.layer.anchorPoint = CGPointMake(0,1);

Just make sure you add Quazrtcore to your frameworks

Hope i understood you correctly.

是伱的 2024-12-15 09:58:12
UIImageViewObj.contentMode = UIViewContentModeBottom;
UIImageViewObj.contentMode = UIViewContentModeBottom;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文