如何在单击按钮上方创建弹出模式?
如上图所示,弹出窗口位于按钮“像婴儿一样睡觉”。
我希望模式以类似的方式弹出。
我该怎么做?
答案 0 :(得分:2)
您可以通过动画更改弹出视图的框架 -
来实现[popUpView setFrame:];
[UIView beginAnimations:nil context:NULL];
[UIView setAnimationDuration:0.5];
[popUpView setFrame:];
[UIView commitAnimations];