gpt4 book ai didi

ios - 打开和关闭表单动画

转载 作者:行者123 更新时间:2023-11-29 01:56:11 26 4
gpt4 key购买 nike

这个动画可以在 iOS 中实现吗?有任何第三方 API 可以实现吗?

enter image description here

最佳答案

用嵌套动画弄清楚自己

-(void)viewDidLoad
{

expandiView = [[UIView alloc] initWithFrame:CGRectMake(137, 269, 30, 2
)];
expandiView.backgroundColor = [UIColor redColor];
[self.view addSubview:expandiView];
expandiView.hidden=YES;

}

-(IBAction)Expand:(id)sender {

expandiView.hidden=NO;


[UIView animateWithDuration:0.5f
animations:^{

expandiView.frame = CGRectMake(60, 269, 200, 2);
}
completion:^(BOOL finished) {
[UIView animateWithDuration:1
animations:^{
expandiView.frame = CGRectMake(60, 269, 200, 100);

}];
}];

}





-(IBAction)collapse:(id)sender {



[UIView animateWithDuration:0.5f
animations:^{
expandiView.frame = CGRectMake(60, 269, 200, 2);

}
completion:^(BOOL finished) {
[UIView animateWithDuration:0.5f animations:^{
expandiView.frame = CGRectMake(137, 269, 30, 2);
} completion:^(BOOL finished) {
expandiView.hidden=YES;
}];
}];


}

关于ios - 打开和关闭表单动画,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30826676/

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