Merge pull request #231 from 3lvis/fix/simpler-examples

Trailing closures in README and Examples
This commit is contained in:
Robert Payne 2016-05-12 23:40:16 +12:00
commit 0ad0315fb3
4 changed files with 31 additions and 56 deletions

View File

@ -13,7 +13,6 @@ class AppDelegate: UIResponder, UIApplicationDelegate {
var window: UIWindow? var window: UIWindow?
func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool { func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool {
self.window = UIWindow(frame: UIScreen.mainScreen().bounds) self.window = UIWindow(frame: UIScreen.mainScreen().bounds)
@ -28,29 +27,5 @@ class AppDelegate: UIResponder, UIApplicationDelegate {
return true return true
} }
func applicationWillResignActive(application: UIApplication) {
// Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state.
// Use this method to pause ongoing tasks, disable timers, and throttle down OpenGL ES frame rates. Games should use this method to pause the game.
}
func applicationDidEnterBackground(application: UIApplication) {
// Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later.
// If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits.
}
func applicationWillEnterForeground(application: UIApplication) {
// Called as part of the transition from the background to the inactive state; here you can undo many of the changes made on entering the background.
}
func applicationDidBecomeActive(application: UIApplication) {
// Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface.
}
func applicationWillTerminate(application: UIApplication) {
// Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:.
}
} }

View File

@ -43,16 +43,16 @@ class BasicUIScrollViewController: UIViewController {
if (!didSetupConstraints) { if (!didSetupConstraints) {
scrollView.snp_makeConstraints { (make) -> Void in scrollView.snp_makeConstraints { make in
make.edges.equalTo(view).inset(UIEdgeInsetsZero) make.edges.equalTo(view).inset(UIEdgeInsetsZero)
} }
contentView.snp_makeConstraints { (make) -> Void in contentView.snp_makeConstraints { make in
make.edges.equalTo(scrollView).inset(UIEdgeInsetsZero) make.edges.equalTo(scrollView).inset(UIEdgeInsetsZero)
make.width.equalTo(scrollView) make.width.equalTo(scrollView)
} }
label.snp_makeConstraints { (make) -> Void in label.snp_makeConstraints { make in
make.top.equalTo(contentView).inset(20) make.top.equalTo(contentView).inset(20)
make.leading.equalTo(contentView).inset(20) make.leading.equalTo(contentView).inset(20)
make.trailing.equalTo(contentView).inset(20) make.trailing.equalTo(contentView).inset(20)

View File

@ -11,87 +11,87 @@ import UIKit
class SimpleLayoutViewController: UIViewController { class SimpleLayoutViewController: UIViewController {
var didSetupConstraints = false var didSetupConstraints = false
let blackView: UIView = { let blackView: UIView = {
let view = UIView() let view = UIView()
view.backgroundColor = .blackColor() view.backgroundColor = .blackColor()
return view return view
}() }()
let redView: UIView = { let redView: UIView = {
let view = UIView() let view = UIView()
view.backgroundColor = .redColor() view.backgroundColor = .redColor()
return view return view
}() }()
let yellowView: UIView = { let yellowView: UIView = {
let view = UIView() let view = UIView()
view.backgroundColor = .yellowColor() view.backgroundColor = .yellowColor()
return view return view
}() }()
let blueView: UIView = { let blueView: UIView = {
let view = UIView() let view = UIView()
view.backgroundColor = .blueColor() view.backgroundColor = .blueColor()
return view return view
}() }()
let greenView: UIView = { let greenView: UIView = {
let view = UIView() let view = UIView()
view.backgroundColor = .greenColor() view.backgroundColor = .greenColor()
return view return view
}() }()
override func viewDidLoad() { override func viewDidLoad() {
super.viewDidLoad() super.viewDidLoad()
view.backgroundColor = UIColor.whiteColor() view.backgroundColor = UIColor.whiteColor()
view.addSubview(blackView) view.addSubview(blackView)
view.addSubview(redView) view.addSubview(redView)
view.addSubview(yellowView) view.addSubview(yellowView)
view.addSubview(blueView) view.addSubview(blueView)
view.addSubview(greenView) view.addSubview(greenView)
view.setNeedsUpdateConstraints() view.setNeedsUpdateConstraints()
} }
override func updateViewConstraints() { override func updateViewConstraints() {
if (!didSetupConstraints) { if (!didSetupConstraints) {
blackView.snp_makeConstraints(closure: { (make) -> Void in blackView.snp_makeConstraints { make in
make.center.equalTo(view) make.center.equalTo(view)
make.size.equalTo(CGSizeMake(100.0, 100.0)) make.size.equalTo(CGSizeMake(100.0, 100.0))
}) }
redView.snp_makeConstraints(closure: { (make) -> Void in redView.snp_makeConstraints { make in
make.top.equalTo(blackView.snp_bottom).offset(20.0) make.top.equalTo(blackView.snp_bottom).offset(20.0)
make.left.equalTo(20.0) make.left.equalTo(20.0)
make.size.equalTo(CGSizeMake(100.0, 100.0)) make.size.equalTo(CGSizeMake(100.0, 100.0))
}) }
yellowView.snp_makeConstraints(closure: { (make) -> Void in yellowView.snp_makeConstraints { make in
make.top.equalTo(blackView.snp_bottom).offset(20.0) make.top.equalTo(blackView.snp_bottom).offset(20.0)
make.left.equalTo(blackView.snp_right).offset(20.0) make.left.equalTo(blackView.snp_right).offset(20.0)
make.size.equalTo(CGSizeMake(100.0, 100.0)) make.size.equalTo(CGSizeMake(100.0, 100.0))
}) }
blueView.snp_makeConstraints(closure: { (make) -> Void in blueView.snp_makeConstraints { make in
make.bottom.equalTo(blackView.snp_top).offset(-20.0) make.bottom.equalTo(blackView.snp_top).offset(-20.0)
make.left.equalTo(blackView.snp_right).offset(20.0) make.left.equalTo(blackView.snp_right).offset(20.0)
make.size.equalTo(CGSizeMake(100.0, 100.0)) make.size.equalTo(CGSizeMake(100.0, 100.0))
}) }
greenView.snp_makeConstraints(closure: { (make) -> Void in greenView.snp_makeConstraints { make in
make.bottom.equalTo(blackView.snp_top).offset(-20.0) make.bottom.equalTo(blackView.snp_top).offset(-20.0)
make.right.equalTo(blackView.snp_left).offset(-20.0) make.right.equalTo(blackView.snp_left).offset(-20.0)
make.size.equalTo(CGSizeMake(100.0, 100.0)) make.size.equalTo(CGSizeMake(100.0, 100.0))
}) }
didSetupConstraints = true didSetupConstraints = true
} }
super.updateViewConstraints() super.updateViewConstraints()
} }

View File

@ -17,7 +17,7 @@ class MyViewController: UIViewController {
super.viewDidLoad() super.viewDidLoad()
self.view.addSubview(box) self.view.addSubview(box)
box.snp_makeConstraints { (make) -> Void in box.snp_makeConstraints { make in
make.width.height.equalTo(50) make.width.height.equalTo(50)
make.center.equalTo(self.view) make.center.equalTo(self.view)
} }