我有我想要的应用程序,当用户输入任何数据时,视图应该向上滑动。我正在编写此代码,此代码在另一个应用程序中运行良好,但在此应用程序中不起作用。我遵循相同的方式。
-(void)showAnimationBack{
NSLog(@"Back Animation is Working");
[UIView animateWithDuration:0.5
animations:^{
self.subViewLand.frame = CGRectMake(0,-10,1024,768);
}];
}
-(void) showAnimationPests{
NSLog(@" Animation is Working");
[UIView animateWithDuration:0.5
animations:^{
self.subViewLand.frame = CGRectMake(0,-200,1024,768);
}];
}