gpt4 book ai didi

iphone - IOS UiView动画在ios 5和ios 6设备上产生不同的效果

转载 作者:行者123 更新时间:2023-11-29 03:40:45 25 4
gpt4 key购买 nike

我在我的ios应用程序中创建了缩放动画,它在ios 6设备上工作正常,但是当我在包含ios 5的设备上运行相同的代码时,它的行为不同,那就是按钮(我在其上放置此效果)来了具有拉伸(stretch)和延迟效果。任何人都可以看一下代码并检查我错了什么。

代码

- (void) zoomEffect
{
self.transform = CGAffineTransformScale(CGAffineTransformIdentity, 0, 0);
[UIView animateWithDuration:0.3 animations:^{
self.transform = CGAffineTransformScale(CGAffineTransformIdentity, 1.3, 1.3);
} completion:^(BOOL finished){
[UIView animateWithDuration:0.3 animations:^{
self.transform = CGAffineTransformIdentity;
} completion:^(BOOL finished){

}];
}];
}

最佳答案

我有同样的“问题”......:)

尝试改变这一行

self.transform = CGAffineTransformScale(CGAffineTransformIdentity, 0, 0);

self.transform = CGAffineTransformScale(CGAffineTransformIdentity, 0.0001, 0.0001);

关于iphone - IOS UiView动画在ios 5和ios 6设备上产生不同的效果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18504756/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com