IOS UItableView 滾動到底 觸發事件

來源:互聯網
上載者:User

標籤:style   blog   class   code   java   color   

開發過程中,在使用UItableView 總會遇到載入更多的問題,到底是手勢響應瀑布流的方法好?

還是添加一個底端cell點擊觸發載入更多好?我也想有自己的判斷。但是我們老闆總說了算,沒辦法,誰叫我給人家打工呢?

cell觸發式略,這個很簡單。

下邊講下怎麼響應瀑布流。

主要有上拉重新整理 和下提載入 這兩種操作。關鍵是判斷何時執行:滾動到最上邊,滾動到最下邊

給出一個方法,目前我是這麼做的,有更好的方法我再備份。

- (void)scrollViewDidEndDragging:(UIScrollView *)scrollView willDecelerate:(BOOL)decelerate{    if(NO)    {            }    else    {        CGPoint offset1 = scrollView.contentOffset;        CGRect bounds1 = scrollView.bounds;        CGSize size1 = scrollView.contentSize;        UIEdgeInsets inset1 = scrollView.contentInset;        float y1 = offset1.y + bounds1.size.height - inset1.bottom;        float h1 = size1.height;        if (y1 > tabView.frame.size.height) {            flagShuaxin = YES;        }        else if (y1 < tabView.frame.size.height) {            flagShuaxin = NO;        }        else if (y1 == tabView.frame.size.height) {            NSLog(@"%@", flagShuaxin ? @"上拉重新整理" : @"下拉重新整理");        }        if(flagShuaxin)//上提載入更多        {            if (_refreshFooterView)            {                [_refreshFooterView egoRefreshScrollViewDidEndDragging:scrollView];            }        }    }}

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.