問題の解決策が見つからないので、専門家が助けてくれることを願っています。
セルがたくさんあるテーブルビューがあります。セルごとに、角が丸い画像ビューがあります。
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
UIImageView *exampleView;
...
exampleView.layer.cornerRadius = 5.f;
exampleView.clipsToBounds = YES;
[cell.contentView addSubview:exampleView];
...
}
スクロール パフォーマンスの問題が大きくない - cornerRadius と clipsToBounds = YES を使用する場合、代替ソリューションはありますか? (角丸の画像表示には写真が含まれており、角が設定されていない場合。スクロールはスムーズです。問題はここにあります)
編集#1:他の投稿をすでに読んでいることを明確にするために:
...
exampleView.frame = CGRectMake(5.0f,size.height-15.0f,30.0f,30.0f);
exampleView.layer.backgroundColor = [UIColor colorWithRed:0 green:0 blue:0 alpha:0.5].CGColor;
exampleView.layer.cornerRadius = 5.0f;
exampleView.layer.borderWidth = 0.3f;
exampleView.layer.borderColor = [UIColor blackColor].CGColor;
exampleView.layer.masksToBounds = NO;
exampleView.layer.shouldRasterize = YES;
//exampleView.clipsToBounds = NO;
[exampleView setImage: myImage ];
編集 #2: 丸みを帯びた角のビューに myImage が重なり合っているようです。画像を角の丸いビューに正しく合わせるにはどうすればよいですか? または私は何かを逃していますか?