改变UIImageView的bounds.size.height的iOS行为
在开始时 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
要设置锚点,您只需执行
此操作即可将锚点设置为中间。如果您希望它位于左下角,
请确保将 Quazrtcore 添加到您的框架中
希望我正确理解您的意思。
To set the anchor point you can just do
this will set the anchor point to the middle. if you want it in the left bottom part
Just make sure you add Quazrtcore to your frameworks
Hope i understood you correctly.