deleteRowsAtIndexPaths的NSInternalInconsistencyException異常

來源:互聯網
上載者:User

在表視圖的行刪除操作中,用deleteRowsAtIndexPaths方法刪除一個indexPath數組時,拋出一個錯誤NSInternalInconsistencyException。將出錯前後的代碼摘錄如下。

 

使用斷點追蹤時,發現拋錯代碼在endUpdates方法上。

錯誤資訊如下:

** Terminating app due to uncaught exception'NSInternalInconsistencyException', reason: 'Unable to resolve row for indexpath:  2 indexes [0, 1]'

 

先確定一點,這個錯是在對於uitableview的機制使用上不熟悉導致的,一定不是uitableview的自生問題,別動不動懷疑ios的bug。

有人這麼建議的:

The table view data source needs to be consistent with yourinsert/delete calls. Set a break point in numberOfRowsInSection to assure thatthe number of rows in a section is correct after the insert/delete rows.

表視圖的資料來源需要和你插入或者刪除的操作保持一致。在numberOfRowsInSection上做一個斷點,確認插入或者刪除記錄後結果集總數要和deleteRowsAtIndexPaths操作一致。

通過設定numberOfRowsInSection斷點,可以很清楚看到deleteRowsAtIndexPaths的執行流程,它在endUpdates之前,是要調用numberOfRowsInSection的,從而得到刪除cell後的記錄數。

如果這裡沒有beginUpdates和endUpdates的封裝,那麼必須在deleteRowsAtIndexPaths之前就將datasource進行刪除。否則就會報這個錯誤。

 

至於有人提到,不用deleteRowsAtIndexPaths操作,而是使用reloaddata,全屏

相關文章

聯繫我們

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