• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

ios - 带有动画的 UiImageView 太大了

[复制链接]
菜鸟教程小白 发表于 2022-12-13 16:12:05 | 显示全部楼层 |阅读模式 打印 上一主题 下一主题

我有一个继承自 UIImageView 的类。然后我有 NSArray 包含包含一些图片的 A 类的对象。然后我只想添加到主视图 (self.view addSubview: "object of Aclass") 并删除其中的一些。我会继续这样做一段时间。这是问题。当我用一些 Animation “添加”和“删除” UIImageView (一个类对象)时,就像我添加时一样,UIImageView 来自小到原来的大小,当我删除时,它会从原来的大小变小

-(void)displayAClassObject: {
[self.view addSubview: AClassObject];
AClassObject.transform = CGAffineTransformMakeScale(0.3, 0.3);
[UIView animateWithDuration:0.2 delay:0 options:UIViewAnimationOptionCurveEaseOut animations:^{ AClassObject.transform = CGAffineTransformIdentity; } completion:^(BOOL finished) {  }];
}

然后一些函数会生成随机数来删除主视图中添加的AClassObject

-(void)displayOffAClassObject {
[UIView animateWithDuration:0.1 animations:^{AClassObject.transform = CGAffineTransformScale(CGAffineTransformIdentity, 0.1, 0.1);} completion:^(BOOL finished){[AClassObject removeFromSuperview]; }];
[AClassObject removeFromSuperview];
}

当我再次将删除的 AClassObject 添加到主 view 时,我将其设置为不同的框架以将其放置在主视图中的不同位置,但我没有更改它的大小。

这个过程每秒都在进行,但是当我只添加或删除时,它工作正常。 AClassObject 从小到其原始大小,然后其原始大小变为小。但是当我像 [self displayOffAClassObject] 一样同时做这两个时; [self displayAClassObject];

UIImageView (AClassObject) 变得非常大,甚至有些图像离开了屏幕。谁能告诉我出了什么问题??或者有什么修复建议?



Best Answer-推荐答案


当你进行变换(尤其是缩放变换)时,.frame 变得无效。在设置其框架之前设置 AClassObject.transform = CGAffineTransformIdentity。如果要在 .transform 不是身份时设置其位置,请改为设置 .center

引用自 UIView 文档:

WARNING

If this property (.transform) is not the identity transform, the value of the frame property is undefined and therefore should be ignored.

https://developer.apple.com/library/ios/documentation/UIKit/Reference/UIView_Class/#//apple_ref/occ/instp/UIView/transform

关于ios - 带有动画的 UiImageView 太大了,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37019086/

回复

使用道具 举报

懒得打字嘛,点击右侧快捷回复 【右侧内容,后台自定义】
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

关注0

粉丝2

帖子830918

发布主题
阅读排行 更多
广告位

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap