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 上产生波纹效果


- UITextView 内容插图 2022-01-01
- 如何在 iPhone 模拟器中重置 NSUserDefaults 数据? 2022-01-01
- 在 Iphone SDK 的导航栏上添加多个按钮 2022-01-01
- URL编码Swift iOS 2022-01-01
- 类似于 Mail.app 的 iPad 模态视图控制器? 2022-01-01
- GPS状态的广播接收器? 2022-01-01
- 网上有没有好的 UIScrollView 教程? 2022-01-01
- Xcode 7.3 中带有 UILabel 的 UIStackView 2022-01-01
- SetOnItemSelectedListener上的微调程序错误 2022-01-01
- 使用自动布局向 UIScrollView 添加动态大小的视图 2022-01-01