亚洲色图第一页I久久91I成人网站在线I国产A片I6080网站免费电影I亚洲色图图片I网址你懂的I精品人伦一区二区三区不卡I人妻一区I69无码I久久久久9999I嫩草视频在线观看

dequeueReusableCellWithIdentifier

系統(tǒng) 2206 0

dequeueReusableCellWithIdentifier:

Returns a reusable table-view cell object located by its identifier.

- ( UITableViewCell ?*)dequeueReusableCellWithIdentifier:( NSString ?*) identifier

Parameters
identifier

A string identifying the cell object to be reused. By default, a reusable cell’s identifier is its class name, but you can change it to any arbitrary value.

Return Value

A? UITableViewCell ?object with the associated? identifier ?or? nil ?if no such object exists in the reusable-cell queue.

Discussion

For performance reasons, a table view’s data source should generally reuse UITableViewCell ?objects when it assigns cells to rows in its tableView:cellForRowAtIndexPath: ?method. A table view maintains a queue or list of UITableViewCell ?objects that the table view’s delegate has marked for reuse. It marks a cell for reuse by assigning it a reuse identifier when it creates it (that is, in the initWithFrame:reuseIdentifier: ?method of? UITableViewCell ). The data source can access specific “template” cell objects in this queue by invoking the dequeueReusableCellWithIdentifier: ?method. You can access a cell’s reuse identifier through its? reuseIdentifier ?property, which is defined by? UITableViewCell .

Availability
  • Available in iPhone OS 2.0 and later.
Related Sample Code
Declared In

?

UITableView.h

?

?

?

dequeueReusableCellWithIdentifier的運行機制猜測

?

  1. static NSString *CheckMarkCellIdentifier = @"CheckMarkCellIdentifier";
  2. ????
  3. ????UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:<#(NSString *)identifier#>]
  4. ????
  5. ????if (cell == nil) {
  6. ????????<#statements#>
  7. ????}

?

書本上講解的很隨意,只是說為了重復使用,和節(jié)省資源的內(nèi)部機制。
看文檔介紹的也比較籠統(tǒng),而代碼也只是訪問到頭文件就終止了,所以才臆測一下實現(xiàn)的機制,還請高手們不論對于錯都寫點什么。其實我還是很疑惑的。

dequeueReusableCellWithIdentifier消息返回的是UITableViewCell對象,即是說這是一個用來獲取UITableViewCell對象的消息,廢話。
之所以不說是初始化一個對象,是因為它可能返回nil值,所以才要在下面補充一個如果cell為nil時的處理過程。
那么這個方法是不是可以解釋成為,從一個UITableViewCell對象池中獲取一個以Identifier參數(shù)命名的UITableViewCell對象。
如果在資源緊缺的時候,這個池會自動清理多余的UITableViewCell對象,則可能無法返回對象,但如果資源豐富,則會保存一些UITableViewCell對象,在需要調(diào)用的時候迅速的返回,而不用創(chuàng)建.

?

當TABLE一開始加載的時候。。REUSABLEQUEEE中沒有任何元素。。當TABLE向下滾動時,滑出TABLEVIEW的CELL被加入到隊列中。。下面用到相同的IDENTIFIER的CELL的時候就不用創(chuàng)建,直接 從QUEUE中拿出,修改相應(yīng)的屬性。。避免重復創(chuàng)建大量相同STYLE的CELL

dequeueReusableCellWithIdentifier


更多文章、技術(shù)交流、商務(wù)合作、聯(lián)系博主

微信掃碼或搜索:z360901061

微信掃一掃加我為好友

QQ號聯(lián)系: 360901061

您的支持是博主寫作最大的動力,如果您喜歡我的文章,感覺我的文章對您有幫助,請用微信掃描下面二維碼支持博主2元、5元、10元、20元等您想捐的金額吧,狠狠點擊下面給點支持吧,站長非常感激您!手機微信長按不能支付解決辦法:請將微信支付二維碼保存到相冊,切換到微信,然后點擊微信右上角掃一掃功能,選擇支付二維碼完成支付。

【本文對您有幫助就好】

您的支持是博主寫作最大的動力,如果您喜歡我的文章,感覺我的文章對您有幫助,請用微信掃描上面二維碼支持博主2元、5元、10元、自定義金額等您想捐的金額吧,站長會非常 感謝您的哦!!!

發(fā)表我的評論
最新評論 總共0條評論