For using SkeletonView you have to implement UITableView/UICollectionView dataSource
which i can't use beacuse i'm using tableView.rx.items
to bind my table to some observable. so how can i use RxCocoa
besides SkeletonView
.
any suggestion?
For more info: RxSkeleton
library is not good idea for a non-RxDataSourced tableView
You can always create your own data source. Just write a class that conforms to both
SkeletonTableViewDataSource
andRxTableViewDataSourceType
then you can pass an instance intoitems
.