Zsolt Kovács
Zsolt Kovács
Same issue here :(
@marlonrichert A bit of a followup question/request, I would also like to disable or tweak the Tab behavior. If you have the following directories: ``` foo1 foo2 foo3 ``` The...
It looks like the same crash as in #311. Based on that description, I would assume it's a concurrency issue. There is an animation happening (ex: reload, dequeue, selecting row),...
> @lordzsolt Does anyone have solutions for that? I'm working with million users app so it can be a big problem. Thanks in advance. What do you mean by 'it...
Your models need to be homogenous. Either be of the same type or inherit from the same protocol or base class. Usually, I use an enum with associated values for...
A slight improvement, though not the ideal solution: Both `UICollectionView` and `UITableView` expose `func model(at indexPath: IndexPath) throws -> T` So you could rewrite the top part to: ``` guard...
This is probably not an RxDataSources issue. If you look at the error message, it's coming from `RxCocoa`, which `RxDataSources` depends on.
If you look [through the code](https://github.com/RxSwiftCommunity/RxDataSources/blob/master/Sources/RxDataSources/RxTableViewSectionedReloadDataSource.swift), it simply calls `reloadData` for every change. Which is more performant than calculating diffs and applying them with `tableView.performBatchUpdates`.
- Presenter is NOT a View Controller (or View) - Reactor is NOT the Interactor Both are one layer deeper. The Presenter is the Reactor and the Interactor is the...
While I'm not the author of the article, I can at least partly answer your questions 🙂 They are `static`, because you should never need to access `self` inside them....