Skip to content

Instantly share code, notes, and snippets.

@zhjuncai
Forked from erica/example1.swift
Created January 27, 2016 15:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zhjuncai/d7a1eb896c1943c218dd to your computer and use it in GitHub Desktop.
Save zhjuncai/d7a1eb896c1943c218dd to your computer and use it in GitHub Desktop.
import UIKit
import XCPlayground
class ViewController: UIViewController {
func action() { print("Bing!") }
override func viewDidLoad() {
super.viewDidLoad()
view.backgroundColor = .whiteColor()
let mySwitch : UISwitch = {
view.addSubview($0)
CenterViewInSuperview($0,
horizontal: true, vertical: true)
$0.addTarget(self, action: "action",
forControlEvents: .TouchUpInside)
return $0
}(UISwitch())
let _ : UILabel = {
view.addSubview($0)
CenterViewInSuperview($0,
horizontal: true, vertical: false)
$0.text = "Toggle me"
$0.font = UIFont.boldSystemFontOfSize(36)
ConstrainViews("V:[view1]-30-[view2]",
views: $0, mySwitch)
return $0
}(UILabel())
}
}
ViewController()
XCPlaygroundPage.currentPage.liveView = ViewController()
XCPlaygroundPage.currentPage.needsIndefiniteExecution = true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment