SimpleCell의 Github 주소는 여기 입니다.


Reference

https://github.com/AliSoftware/Reusable
https://github.com/giftbott

에서 사용방법을 참조하여 변경했습니다.


Summary

Reuseable CollectionView, TableView의 Cell에 사용하는 코드를 줄여주는 Swift extension 입니다.

before

tableView.register(UItableViewCell, forCellWithReuseIdentifier: "Cell")
tableView.dequeueReusableCell(withReuseIdentifier: "Cell", for: indexPath) as! UserCell

after

tableView.register(cell: TableViewCell.self)
let cell = tableView.dequeue(TableViewCell.self) // cell Type은 TableViewCell.type 입니다