0

我正在开发 iphone 应用程序。需要一次显示 5 条记录,当我到达页面末尾时,接下来的 5 条记录将需要使用自动滚动加载。

初始 5 条记录显示完成。

当我到达页面末尾时滚动不起作用。

任何一个都可以。

4

2 回答 2

1

我找到了解决方案。我的代码如下,

myTable.addEventListener('scroll', function(e){

    if (Ti.Platform.osname === 'iphone')
    {
        var offset = e.contentOffset.y;
        var height = e.size.height;
        var total = offset + height;
        var theEnd = e.contentSize.height;

        // this condition will check whether the scroll reach end or not?
        if (theEnd == total)
        {
             //call the function once again.
             loadContents();
        }

    }
});

我希望...有人会使用它。

于 2012-10-22T05:28:17.323 回答
0

@Suresh.g

您可以将“ScrollView”与属性“contentHeight:Ti.UI.Size(或“Auto”)一起使用。

当您使用“ScrollView”时,它会根据您的要求设置默认高度。

您还可以启用 showHorizo​​ntalScrollIndicator : true,

欲了解更多信息,请阅读此博客

于 2012-09-29T12:52:19.940 回答