// // SelectAvatarVM.swift // WOKA // // Created by MacBook Pro on 02/05/24. // import UIKit class SelectAvatarVM{ weak var vc : SelectAvatarVC! func initView(){ setupCell() } func setupCell(){ vc.collectionView.register(UINib(nibName: K.CellIdentifier.Authentication.selectAvatarCell, bundle: nil), forCellWithReuseIdentifier: K.CellIdentifier.Authentication.selectAvatarCell) vc.collectionView.delegate = self.vc vc.collectionView.dataSource = self.vc } }