iOS開發:tableview位置錯亂和位移及回到原來位置,iostableview

來源:互聯網
上載者:User

iOS開發:tableview位置錯亂和位移及回到原來位置,iostableview

上拉重新整理後探索資料位置錯亂?tableview的位移不對?比如資料一共有40條,一次載入20條,正常應該顯示在第21條,上拉時載入後發現tableview停在了第11條或者30幾條,如果你發生了和我一樣的情況,那看這裡

- (void)addRefresh {__weak typeof (self) weakSelf = self;weakSelf.nomalTable.mj_header =  [MJRefreshNormalHeader headerWithRefreshingBlock:^{    weakSelf.page = @"0";    [weakSelf tableReloadCtrlWithPage];}];weakSelf.nomalTable.mj_footer = [MJRefreshBackNormalFooter footerWithRefreshingBlock:^{    NSInteger index = [self.page intValue];    index += 1;    weakSelf.page = [NSString stringWithFormat:@"%ld",(long)index];    [weakSelf tableReloadCtrlWithPage];}];[weakSelf.nomalTable.mj_header beginRefreshing];} // 這裡的page指的是分頁頁數 // 當為if page == 1 else page += 1  - (void)tableReloadCtrlWithPage {    [self.nomalTable reloadData];if (!self.dataArr.count?YES:NO) {    self.nomalTable.tableFooterView = [self getTableFootView:self.nomalTable.bounds str:@"nodata"];}else{    self.nomalTable.tableFooterView = [UIView new];}NSInteger oldCnt = [self.dataArr count];if (oldCnt > 0 && [self.page intValue] != 0) {    NSInteger row = oldCnt - 20;    NSIndexPath *indexPath = [NSIndexPath indexPathForRow:row inSection:0];    [self.nomalTable scrollToRowAtIndexPath:indexPath atScrollPosition:UITableViewScrollPositionBottom animated:NO];}}

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.