Taras

Results 12 comments of Taras

Hey @Igor-Poltavtsev :) Were you able to disable missing translations warnings?

For now I store sections in the ViewController to prevent reloading them, when only content changes. Example: ``` struct MySections { var myFirstSection = TableSection(nil) var mySecondSection = TableSection(nil) var...

@shamiulrain there are a lot of possibilities why your code doesn't work. And usually it is better when you provide your code with pointing out what you did, what do...

Not sure, but I think, that when you create UICollectionView from code, then you need to create Layout manually. Like this ``` lazy var collectionView: UICollectionView = { let layout...

Can't this be a problem? Because if I initialise UICollectionView from code, then I need to pass layout into its initialiser. And before doing that I may want to configure...

Also there is a library that simplifies work with UITableView. But it doesn't provide mechanism to work with UICollectionView. What it has is CustomActions for cells. It uses NotificationCenter to...

Or maybe UIResponder chain could be used for this purpose. What do you think about these approaches? I can make a PR once we decide on a way how to...

any updates for iOS 11.3 or 11.4? I think there is the same problem on iOS 11.4

I think I found a way how this can work. Maybe we can document it If I create a TableSection without models and without header, but with indexTitle then I...