Artem Kalinovsky
Artem Kalinovsky
@wojczitsu I guess nope:( Maybe, @kishikawakatsumi is busy on other very important stuff:( But you can make your own fork or use any fork with swift 5 upgrade from existing...
Hey guys, I guess, I've found a way how to make self-sizing work: 1) In `viewDidLoad()`: ``` if let collectionViewFlowLayout = collectionView.collectionViewLayout as? UICollectionViewFlowLayout { collectionViewFlowLayout.estimatedItemSize = UICollectionViewFlowLayoutAutomaticSize } ```...
@weyert `func systemLayoutSizeFitting(_ targetSize: CGSize) -> CGSize` give me wrong size (width and height), so I've used method, where I can set correct width by myself: ``` func systemLayoutSizeFitting(_ targetSize:...
@agsarkisov Our app is targeting iOS10 and above, so we don't care about `UICollectionViewFlowLayoutAutomaticSize NS_AVAILABLE_IOS(10_0)` ¯\_(ツ)_/¯