如何获取“仪表板” UIView 的涟漪效应和关闭效应?

发布于 2024-08-20 02:08:56 字数 130 浏览 5 评论 0原文

我的项目添加了一个带有按钮按下的 UIView。当子视图添加到视图中时是否可以获得仪表板连锁反应? 子视图也可以通过以下命令关闭:removeFromSuperview。如何获得仪表板小部件的关闭效果(当您按 x 时)。

My project add a UIView with a button press. Is it possible to get the dashboard ripple-effect when the subview is added to the view?
Also the subview can be closed with: removeFromSuperview. How can I get the closing effect of a dashboard widget (when you press on the x).

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

温馨耳语 2024-08-27 02:08:56

警告:涟漪效应没有记录,因此您无法在 AppStore 中使用它。


从 3.1.2 开始,您可以使用波纹过渡效果

[UIView beginAnimations:@"transition" context:NULL];
[UIView setAnimationTransition:110 forView:myViewContainer cache:YES];
// add subview here.
[UIView commitAnimations];

Warning: The ripple effect is undocumented so you can't use it in AppStore.


As of 3.1.2, you can use a ripple transition effect with

[UIView beginAnimations:@"transition" context:NULL];
[UIView setAnimationTransition:110 forView:myViewContainer cache:YES];
// add subview here.
[UIView commitAnimations];
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文