Skip to content

Instantly share code, notes, and snippets.

View GitHubyangjunyi's full-sized avatar

杨俊艺 GitHubyangjunyi

View GitHub Profile
import UIKit
import PlaygroundSupport
protocol WaterfallLayoutDelegate: AnyObject {
    func numberOfColumns() -> Int
    func columnsSize(at indexPath: IndexPath) -> CGSize
    func columnSpace() -> CGFloat
}
final class WaterfallLayoutViewController: UIViewController, UICollectionViewDataSource {