在我的项目中,我有一个简单的动画,我只是从左到右移动一个视图.这在iOS 6中运行良好,但是当我在iOS 7中运行它没有做任何事情.有人知道为什么吗?如果动画非常简单,我该如何修复iOS 7?我的代码是:
- (void) showAnimation { if (IS_IPAD()) { [UIView animateWithDuration:50.0f delay:1 options:UIViewAnimationOptionRepeat animations:^{ ViewBOLIVIA.frame = CGRectMake(1024,ViewBOLIVIA.frame.size.width,ViewBOLIVIA.frame.size.height); } completion:nil]; } else { if (IS_IPHONE_5) { [UIView animateWithDuration:50.0f delay:1 options:UIViewAnimationOptionRepeat animations:^{ ViewBOLIVIA.frame = CGRectMake(568,ViewBOLIVIA.frame.size.height); } completion:nil]; } else { [UIView animateWithDuration:50.0f delay:1 options:UIViewAnimationOptionRepeat animations:^{ ViewBOLIVIA.frame = CGRectMake(480,ViewBOLIVIA.frame.size.height); } completion:nil]; } } }
我做了更新,我使用Xcode 5和iOS 7所以任何帮助人,你知道如何解决这个问题吗?