Appcelerator TableViewRow 自定义滑动事件
针对 iOS 4.3 使用 Titanium Appcelerator SDK 1.7.1
我有一个 TableViewRow,需要在其上触发自定义滑动事件(而不是默认的可编辑删除),以便可以显示 2 个按钮。一个将行标记为完成,另一个删除该行。
问题是显然 TableViewRow 元素上不允许滑动事件。
我尝试过使用 Swipe 事件、touchstart 事件和 touch move 事件,所有这些事件都带有 alert('woot! your Finger moving!')
回调,但回调从未被触发......
有人遇到并解决了这个问题吗?
Using Titanium Appcelerator SDK 1.7.1 for iOS 4.3
I have a TableViewRow and need to fire a custom swipe event on it (rather than the default editable delete) so that I can show 2 buttons. One marking the row as complete, the other removing the row.
The problem is that apparently the swipe event isn't allowed on the TableViewRow element.
I've tried using the Swipe event, the touchstart event and the touch move event, all with a callback of alert('woot! your finger moved!')
but the callback is never fired ...
Has anybody had and resolved this issue?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这应该有效。
你的代码是什么样的?
编辑:
您的行中有数据吗?如果没有,请查看将数据放入行中是否有帮助。
编辑:
这些是传递给滑动事件的事件,因此您可以使用源来滑动行。
This should work.
What does your code look like?
EDIT:
Do your rows have data in them? If not see if putting data in your rows help.
EDIT:
These are the events that are passed to the swipe event so you can get the row swiped with source.