Results 9 comments of Mikhail Vasilev

Same here... Precondition makes the shipped code to crash (very seldom). ``` open func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell { precondition(indexPath.item < _sectionModels[indexPath.section].items.count) return configureCell(self, collectionView, indexPath,...

I will do it some day when I have free time. Unless somebody will help. Thank you for your attention to this project

I can't answer your question because it don't know the answer. It would be great to get some help from the community and pull requests are always welcome!

Yep, that is the problem. The layout was not designed to work with such a great amount of items...

I have figured it out... ``` class EventsDataStrategy: DataStrategy { static func groups(_ transaction: YapDatabaseViewTransaction?) -> [String] { return ["201610", "201611", "201701", "201702", "201703", "201704", "201705", "201706", "201707", "201708", "201702"]...

I have the same error -> Ubuntu 14.04 LTS

What about Linux without xcode?

``` post_install do |installer| # # Fixing resources signing for xcode 14 sdk # installer.pods_project.targets.each do |target| target.build_configurations.each do |config| if config.build_settings['WRAPPER_EXTENSION'] == 'bundle' config.build_settings['DEVELOPMENT_TEAM'] = 'YOU_TEAM_ID' end end end...

Have the same issue with two images applied simultaneously. ``` if let object = result.alternativeRepresentation as? PINCachedAnimatedImage { // set image } ``` We receive one instance of the image...