滑过 UITableViewCell,显示另一个单元格。框架?
我正在尝试找到一个框架或自己制作一个可以做到这一点的框架:
当您在 UITableViewCell 上滑动/滑动时,会显示另一个单元格(带有在 Twitter、Facebook、电子邮件等上共享等选项)。 Twitter 应用程序已经有了这个,我想知道是否有一个开放的框架。
如果没有,你建议我从哪里开始自己做这个?
谢谢。
要检测滑动,请使用 Apple 的 UISwipeGestureRecognizer
。
I am trying to find either a framework or make one myself that can do this:
When you slide/swipe across a UITableViewCell, another cell gets displayed (with options such as Share on Twitter, Facebook, email etc).
The Twitter-app has got this, and I was wondering if there was an open framework for it.
If not, where do you recommend I start to make this on my own?
Thanks.
To detect a swipe, use Apple's UISwipeGestureRecognizer
.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
几个月前我创建了同样的东西。不幸的是,我现在找不到代码本身,但这里有一些指南:
[UIView beginAnimations]
。您可以显示新的 UIView 而不是 UITableViewCell 的 contentView。如果您有疑问,请告诉我。
I created the same thing a couple of months ago. Unfortunately, I can't find the code itself right now, but here are some guidelines:
[UIView beginAnimations]
. You may show new UIView instead of UITableViewCell's contentView.Please let me know if you have questions.