오늘 셀에 텍스트에 따라서 유동적으로 움직이는걸 만들었는데 암튼 자주 쓸거같아 남깁니다 // UICollectionViewDelegateFlowLayout 구현 func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, sizeForItemAt indexPath: IndexPath) -> CGSize { let item = rmItems[indexPath.item] // 텍스트 길이에 따라 셀의 폭을 조정 let textWidth = item.weight.width(withConstrainedHeight: ..