reusable-cell queue
UITableView
Style:Grouped.
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
仅针对单一的cell,也就是只有一种Cell Identifier。
MAR:对应 X section Y row 的 cell 的内存地址,取16进制的后四位。
section-row MAR ↓ ↓ ↓ ↑
0-0 7650 - - - -
0-1 3b70 3b70 - - -
1-0 3d60 3d60 3d60 - 3d60
1-1 77c0 77c0 77c0 77c0 77c0
1-2 4bd0 4bd0 4bd0 4bd0 4bd0
1-3 cac0 cac0 cac0 cac0 cac0
2-0 8ea0 8ea0 8ea0 8ea0 8ea0
2-1 b750 b750 b750 b750 b750
2-2 b360 b360 b360 b360 b360
3-0 - 7650 7650 7650 7650
3-1 - - 3b70 3b70 3b70
3-2 - - - 3d60 -
对于多Cell Identifier的还没调过。
/**************************************************************************
                 
原文来自博客园——Submarinex的博客: www.cnblogs.com/submarinex/               
 
*************************************************************************/