onPageScroll在IOS真机上不生效但是在模拟器和安装真机都是正常显示有解决方法?
expandButton: function () { this.setData({ 'buttonStyle': 'right: 2%;' }); }, collapseButton: function () { this.setData({ 'buttonStyle': 'right: -8%;' }); }, //监听页面滚动 onPageScroll: function (e) { if (e.scrollTop > this.data.lastScrollTop) { // scrolling down this.expandButton(); } else { // scrolling up this.collapseButton(); } this.setData({ lastScrollTop: e.scrollTop }); },