UIImageView 使用动画块从中心缩放
我正在使用以下内容来放大图像,但它是从左顶点开始缩放的,如何从中心进行缩放
[UIView animateWithDuration:duration delay:delay options:options
animations:^{
myImageView.frame = frame;
myImageView.alpha = alpha;
}
completion:^(BOOL finished) {
}
];
I am using the following to scale image up but it's scaling from it's left top point, how can I make the scale from center
[UIView animateWithDuration:duration delay:delay options:options
animations:^{
myImageView.frame = frame;
myImageView.alpha = alpha;
}
completion:^(BOOL finished) {
}
];
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这将完美地工作
祝你好运
this will work perfectly
Good Luck
试试这个:
它对我有用。
Try this:
It's working for me.
这可以是放大图像的动画块
,作为视图 U 可以使用 uiimageview
this can be the block of animation for the scale up the image
here as theView U Can Use the uiimageview