UITableView中的cell可以有很多,普通會經過重用cell來到達節省內存的目的:經過為每個cell指定一個重用標識符(reuseIdentifier),即指定了單元格的品種,當cell滾出屏幕時,會將滾出屏幕的單元格放入重用的queue中,當某個未在屏幕上的單元格要顯示的時分,就從這個queue中取出單元格停止重用。
但關於多變的自定義cell,有時這種重用機制會出錯。比方,當一個cell含有一個UITextField的子類並被放在重用queue中以待重用,這時假如一個未包括任何子視圖的cell要顯示在屏幕上,就會取出並運用這個重用的cell顯示在無任何子視圖的cell中,這時分就會出錯。
處理辦法:
辦法1 將取得cell的辦法從- (UITableViewCell*)dequeueReusableCellWithIdentifier:(NSString*)identifier 換為-(UITableViewCell *)cellForRowAtIndexPath:(NSIndexPath *)indexPath
重用機制調用的就是dequeueReusableCellWithIdentifier這個辦法,辦法的意思就是“出列可重用的cell”,因此只需將它換為cellForRowAtIndexPath(只從要更新的cell的那一行取出cell),就可以不運用重用機制,因此問題就可以失掉處理,雖然能夠會糜費一些空間。
示例代碼:
[plain]
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"Cell";
// UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier]; //改為以下的辦法
UITableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath]; //依據indexPath精確地取出一行,而不是從cell重用隊列中取出
if (cell == nil) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
}
//...其他代碼
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"Cell";
// UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier]; //改為以下的辦法
UITableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath]; //依據indexPath精確地取出一行,而不是從cell重用隊列中取出
if (cell == nil) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
}
//...其他代碼
}
辦法2 經過為每個cell指定不同的重用標識符(reuseIdentifier)來處理。
重用機制是依據相反的標識符來重用cell的,標識符不同的cell不能彼此重用。於是我們將每個cell的標識符都設置為不同,就可以防止不同cell重用的問題了。
示例代碼:
[plain]
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
NSString *CellIdentifier = [NSString stringWithFormat:@"Cell%d%d", [indexPath section], [indexPath row]];//以indexPath來獨一確定cell
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier]; //出列可重用的cell
if (cell == nil) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
}
//...其他代碼
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
NSString *CellIdentifier = [NSString stringWithFormat:@"Cell%d%d", [indexPath section], [indexPath row]];//以indexPath來獨一確定cell
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier]; //出列可重用的cell
if (cell == nil) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
}
//...其他代碼
}
辦法3 刪除重用cell的一切子視圖
這個辦法是經過刪除重用的cell的一切子視圖,從而失掉一個沒有特殊格式的cell,供其他cell重用。
示例代碼:
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier]; //出列可重用的cell
if (cell == nil) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
}
else
{
//刪除cell的一切子視圖
for (UIView *view in cell.contentView.subviews) {
[view removeFromSuperview];
}
}
}
【怎樣處理UITableViewCell因重用機制惹起的重影問題】的相關資料介紹到這裡,希望對您有所幫助! 提示:不會對讀者因本文所帶來的任何損失負責。如果您支持就請把本站添加至收藏夾哦!