Skip to content

Instantly share code, notes, and snippets.

@kateinoigakukun
Last active March 23, 2018 12:28
Show Gist options
  • Save kateinoigakukun/c56ea508666ca505d8875d828540de22 to your computer and use it in GitHub Desktop.
Save kateinoigakukun/c56ea508666ca505d8875d828540de22 to your computer and use it in GitHub Desktop.
import UIKit
import PlaygroundSupport
let stackView = UIStackView.init(
frame: .init(
x: 0, y: 0,
width: 100, height: 100
)
)
PlaygroundPage.current.liveView = stackView
let subview = UIView()
subview.backgroundColor = .red
stackView.addArrangedSubview(subview)
UIView.animate(withDuration: 1.0, animations: {
subview.isHidden = true
subview.isHidden = true
subview.isHidden = false
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment