iOS SkeletonView 사용할 때 자주 실수하는 부분 정리 문제상황스토리보드 없이 코드로 마이그레이션 하면서 문제 발생 코드로 만들때는 커스텀 셀을 만들게 되는데, 셀 자체도 isSkeletonable이어야 함// 아래 코드가 없어서 문제였음. 전체 코드는 아래 참고self.isSkeletonable = true 프로젝트 코드 (전체 예시)final class NoticeTableViewCell : UITableViewCell { static let identifier : String = String(describing: NoticeTableViewCell.self) // MARK: - View Life cycle override init(style: UITableViewC..