我正在我的应用程序的集合视图中实现 MDChips,但遇到了一个我无法解决的问题。
当我将 selectedImageView 添加到我的芯片并在我的集合视图中选择芯片时,图像按预期显示,但标题由于图像的幻影而移位。
我尝试过使用内在内容和 UIEdgeInsets,但我似乎找不到解决方法。
有什么办法可以避免这种情况发生吗?我希望图像出现而不取代芯片视图中的任何其他内容。
func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "identifierChips", for: indexPath) as! MDCChipCollectionViewCell
let chipView = cell.chipView
chipView.selectedImageView.image = UIImage(named: "tickIcon")
return cell
}
任何提示或帮助将不胜感激!