如何在控件上方显示一个modalView,使其弹出?

时间:2011-04-30 09:15:00

标签: iphone objective-c cocoa-touch ipad

enter image description here

如何在单击按钮上方创建弹出模式?

如上图所示,弹出窗口位于按钮“像婴儿一样睡觉”。

我希望模式以类似的方式弹出。

我该怎么做?

1 个答案:

答案 0 :(得分:2)

您可以通过动画更改弹出视图的框架 -

来实现
[popUpView setFrame:];

[UIView beginAnimations:nil context:NULL];
[UIView setAnimationDuration:0.5];
[popUpView setFrame:];
[UIView commitAnimations];