UIListView的从最下面的cell开始显示,jumpToBottom方法写在初始化页面怎么没效果呢。。。

我想使表格加载完后页面上最从下面cell开始显示,我在初始化页面的时候调用UIListView的jumpToBottom()方法没效果,写到按钮事件里,点击按钮就可以,为什么呢。。。

:12:此bug 此时还有

此bug会尽快修复

listview执行jumpToxxx操作时,通过延时动作系列就搞定了
eg:
local delay = 0.1
local callback = listview:jumpToBottom()
local action = CCSequence:createWithTwoActions(
CCDelayTime:create(delay),
CCCallFunc:create(callback)
)

oneNode:runAction(action)

还有listview 的eventListhener movetobottom的时候有时候会调用三次?