gpt4 book ai didi

iphone - 如何在 iPhone 的 UIView 上添加弹出框动画

转载 作者:行者123 更新时间:2023-12-01 16:53:58 24 4
gpt4 key购买 nike

我有一个按钮添加。这将添加来自画廊和相机的图像。

enter image description here

我想从 ryt 角落展示这个 UIVIew,它会从 1 扩展到 2 到 3 和最终统计 4。就像一个气球。它会隐藏起来,从 4 到 3 到 2 到 1。

我用过这个动画,但这不是我想要的(气球弹出框)

/*[UIView beginAnimations:@"" context:NULL];

//The new frame size
[AddImagesToCanvasView setFrame: CGRectMake(224,185,175,132)];

//The animation duration
[UIView setAnimationDuration:2.0];

[UIView setAnimationDelay: UIViewAnimationCurveEaseIn];

[UIView commitAnimations];*/

最佳答案

只需更改您想要的框架和半径。如果您想像气球一样显示带有气球图像的气球,请在背景中添加图像,请参阅代码..

UIView *popUpView = [[UIView alloc] initWithFrame:view1.frame]; ///add the frame with requirement e.g view1,view2

popUpView.alpha = 0.0;
popUpView.layer.cornerRadius = 5;
popUpView.layer.borderWidth = 1.5f;
popUpView.layer.masksToBounds = YES;
[self.view addSubview:popUpView];

[UIView beginAnimations:nil context:NULL];
[UIView setAnimationDuration:0.4];
[popUpView setAlpha:1.0];
[UIView commitAnimations];
[UIView setAnimationDuration:0.0];
更新:
还可以从下面的链接中查看自定义弹出 View 。
  • PopupView
  • alpopoverview
    我希望这可以帮助你...
  • 关于iphone - 如何在 iPhone 的 UIView 上添加弹出框动画,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13507818/

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