Skip to content

Instantly share code, notes, and snippets.

@oliver-foggin
oliver-foggin / AnimatingWithStackView.swift
Last active September 21, 2017 06:41
Animating a basic layout with UIStackView
import UIKit
import PlaygroundSupport
class RoundView: UIView {
override func layoutSubviews() {
super.layoutSubviews()
layer.cornerRadius = bounds.height * 0.5
}
}