AirBnB's MagazineLayout implementation -> dynamically resizing cells in MenuViewController, TODO: test resizing on real device, simulator delays resizing until after scrolling (possibly a bug)

This commit is contained in:
Deniz Duezgoeren
2019-07-16 11:51:50 +02:00
parent 2f3ce29a4d
commit 7e23bb2e5d
22 changed files with 1702 additions and 914 deletions
+22
View File
@@ -0,0 +1,22 @@
//
// MenuViewCell.swift
// AvH Plan
//
// Created by Deniz Duezgoeren on 16.07.19.
// Copyright © 2019 Deniz Duezgoeren. All rights reserved.
//
import UIKit
import MagazineLayout
class MenuViewCell: MagazineLayoutCollectionViewCell {
@IBOutlet weak var content: UILabel!
override func awakeFromNib() {
super.awakeFromNib()
// Initialization code
}
}