2

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

在此处输入图像描述

我想从 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];*/
4

1 回答 1

0

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

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];

更新:

还可以从下面的链接中查看自定义弹出视图。

  1. 弹出视图

  2. alpopoverview

    我希望这可以帮助你...

于 2012-11-22T07:42:14.577 回答