Skip to content

Instantly share code, notes, and snippets.

View cendaar's full-sized avatar
🐙

Baptiste Rousseau cendaar

🐙
View GitHub Profile
@cendaar
cendaar / stackview.swift
Last active July 4, 2018 21:52
Play with UIStackView in playground
//: Playground - noun: a place where people can play
import UIKit
import XCPlayground
let containerView = UIView(frame: CGRect(x: 0.0, y: 0.0, width: 375.0, height: 667.0))
containerView.backgroundColor = UIColor.whiteColor()
let stackView = UIStackView()