Skip to content

Instantly share code, notes, and snippets.

View oliver-foggin's full-sized avatar

Oliver Foggin oliver-foggin

View GitHub Profile
@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
}
}