IOS ScrollViewContext.scrollTo 滚动无效
发布于 6 年前 作者 nluo 12323 次浏览 来自 问答

使用 ScrollViewContext.scrollTo 接口无效, 模拟器没有效果,真机是 IOS XR 14.4.2 .

IOS 添加了 duration 参数完全没有效果, 一动不动,去掉该参数,滚动了但有 bug.

安卓没有问题但是 duration 参数好像还是没起作用,我的使用方式不对吗?

const query = wx.createSelectorQuery();
query.select('#scroll-view').node();
query.select('#scroll-view').boundingClientRect();
query.exec(([{ node: scrollview }, { height }]) => {
  console.log(height);
  scrollview.scrollTo({ top: height, animatedtrueduration3000 });
});
1 回复

你那里不行吗,ios12 8.0.9是可以正常滚动的

回到顶部