【优化】scrollview SetData接口默认回到顶部

dev_chengFeng
JieLing 2020-12-30 15:55:46 +08:00 committed by zhangqiang
parent 1b77aec298
commit cf0e819d73
1 changed files with 4 additions and 4 deletions

View File

@ -297,7 +297,7 @@ function ScrollCycleView:OnOpen(itemGO, scrollBar, scrollSizeDeltaV2, dragType,
end
end
function this:SetData(dataList, updateFunc, isTop, noAnim)
function this:SetData(dataList, updateFunc, noTop, noAnim)
self.dataList = dataList --传入的数据列表
self.updateFunc = updateFunc --刷新回调,返回数据列表的索引和对应预设
self.dataCount = #dataList
@ -319,11 +319,11 @@ function this:SetData(dataList, updateFunc, isTop, noAnim)
end
-- 判断是否回到顶部,否则保持不动
if isTop then
self:SetShow(1)
else
if noTop then
local showIndex = self:CalShowIndex()
self:SetShow(showIndex)
else
self:SetShow(1)
end
end