Files
Woka_Native_iOS/WOKA/Authentication/ViewModel/SelectAvatarVM.swift
2024-05-02 19:30:09 +05:30

24 lines
530 B
Swift

//
// 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
}
}