セルのイメージビューをリロードするNSTableView
と上書きされます。ココアのスーパービューからイメージビューを削除するには?
以下のコードを試しました:
NSImageView *tabIconImageview1=[[NSImageView alloc]initWithFrame:NSMakeRect(45, 12, 40, 40)];
[tabIconImageview removeFromSuperviewWithoutNeedingDisplay];
[tabIconImageview removeFromSuperview];
if ([strFilenames hasSuffix:@"."])
{
[tabIconImageview1 setImage:[NSImage imageNamed:@"fileicon"]];
//tabIconImageview1.image=[NSImage imageNamed:@"fileicon"];
}
else if ([strFilenames hasSuffix:@".exe"])
{
[tabIconImageview1 setImage:[NSImage imageNamed:@"exeicon"]];
}
else if ([strFilenames hasSuffix:@"png"])
{
[tabIconImageview1 setImage:[NSImage imageNamed:@"imageicon"]];
}
else if ([strFilenames hasSuffix:@".zip"])
{
[tabIconImageview1 setImage:[NSImage imageNamed:@"zipicon"]];
}
else //if ([strFilenames hasSuffix:@"."])
{
[tabIconImageview1 setImage:[NSImage imageNamed:@"foldericon"]];
}
[cellView addSubview:tabIconImageview1];
私のスクリーンショットを見てください。画像が重なっています。ココアでそれを止めるにはどうすればよいですか?