iPhone - having a Ripple effect on a UIImageView(iPhone - 在 UIImageView 上产生波纹效果)
问题描述
我试图在 imageView 被触摸时创建类似波纹的效果,但是我不明白如何为 windows 实现 OpenGL 并将其移植到 iOS.我尝试使用 http://www.codeproject.com/KB/openGL/dsaqua.aspx 和 cocos2d 但是我发现后者完全令人困惑.有人愿意提供一些建议或可以指出我正确的方向吗?
I am attempting to create a ripple like effect on an imageView when it is touched down on, however I do not understand how to implement OpenGL for windows and porting it to iOS. I have attempted to use http://www.codeproject.com/KB/openGL/dsaqua.aspx as well as cocos2d however I find the latter completely and utterly confusing. Would anyone be willing to give some suggestions or can point me in the right direction?
非常感谢!
推荐答案
在iPhone中使用下面的涟漪效果
Use below for ripple effect in iPhone
[UIView beginAnimations:nil context:NULL];
[UIView setAnimationDuration:1.0];
[UIView setAnimationTransition:(UIViewAnimationTransition) 110 forView:view cache:NO];
[UIView commitAnimations];
更多效果可以查看这个链接:
For more effects you can check this link :
http://www.iphonedevwiki.net/index.php?title=UIViewAnimationState
这篇关于iPhone - 在 UIImageView 上产生波纹效果的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:iPhone - 在 UIImageView 上产生波纹效果
基础教程推荐
- Android:对话框关闭而不调用关闭 2022-01-01
- 当从同一个组件调用时,两个 IBAction 触发的顺序是什么? 2022-01-01
- android 应用程序已发布,但在 google play 中找不到 2022-01-01
- 如何在 UIImageView 中异步加载图像? 2022-01-01
- 如何在没有IB的情况下将2个按钮添加到右侧的UINavigationbar? 2022-01-01
- 如何让对象对 Cocos2D 中的触摸做出反应? 2022-01-01
- Kivy Buildozer 无法构建 apk,命令失败:./distribute.sh -m “kivy"d 2022-01-01
- 在 gmail 中为 ios 应用程序检索朋友的朋友 2022-01-01
- 如何在 iPhone 上显示来自 API 的 HTML 文本? 2022-01-01
- UIWebView 委托方法 shouldStartLoadWithRequest:在 WKWebView 中等效? 2022-01-01