我試圖插入單個自定義圖像作爲UITableView的單元的accessoryView。然而,我有一個有趣的效果:首先,圖標插入任意兩個單元格,然後當我向上滾動時,所有圖標消失,圖像只顯示在底部單元格中,一旦下一個圖標滾動就消失。這是我使用的代碼:當在iOS上滾動UITableView時,配件圖像消失
NearCell *cell = [myTableView dequeueReusableCellWithIdentifier:CellIdentifier];
nearContents* contents=[[self sourceForTableKind:tableView==self.myTableView favorites:NO] objectAtIndex:indexPath.row];
cell.bus.text=contents.bus;
cell.destination.text=contents.destination;
cell.selectionStyle=UITableViewCellAccessoryDetailDisclosureButton;
cell.accessoryView=[[UIImageView alloc] initWithImage:[UIImage imageNamed:@"pinPoint"]];
return cell;
而在UITableViewCell的子類nearCell我:
- (void)layoutSubviews {
[super layoutSubviews];
CGRect accessoryFrame = self.accessoryView.frame;
accessoryFrame.size.height = self.frame.size.height;
accessoryFrame.size.width = self.frame.size.height;
accessoryFrame.origin.y=self.frame.origin.y+21;
accessoryFrame.origin.x=self.frame.origin.x+self.frame.size.width- accessoryFrame.size.width-5;
self.accessoryView.frame = accessoryFrame;
}
我也試圖懶洋洋地分配accessoryView的,思考的問題可能已經與重複分配,但如果我在所有單元格中使用相同的圖像,則圖像不會完全顯示。
這是怎麼回事顯示,圖標只是在最後一個單元格: :
我也安裝了它在其他的tableView有,出於某種原因,子類的layoutSubview不叫和accessoryViews會定期出現在所有單元上,儘管尺寸不正確。因此,問題似乎在layoutSubview回調中休息,即使我忽略它可能是什麼。 但是,兩種情況下的問題都是在觸摸圖像時不調用accessoryButtonTappedForRowWithIndexPath回調,而是調用didSelectRowAtIndexPath回調。