Created
April 25, 2015 07:48
-
-
Save minsOne/f64d6ee21aa1bdef1d84 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import UIKit | |
| import XCPlayground | |
| let containerView = UIView(frame: CGRect(x: 0.0, y: 0.0, width: 375.0, height: 667.0)) | |
| XCPShowView("Container View", containerView) | |
| let circle = UIView(frame: CGRect(x: 0.0, y: 0.0, width: 50.0, height: 50.0)) | |
| circle.center = containerView.center | |
| circle.layer.cornerRadius = 25.0 | |
| let startingColor = UIColor(red: (253.0/255.0), green: (159.0/255.0), blue: (47.0/255.0), alpha: 1.0) | |
| circle.backgroundColor = startingColor | |
| containerView.addSubview(circle); | |
| let rectangle = UIView(frame: CGRect(x: 0.0, y: 0.0, width: 50.0, height: 50.0)) | |
| rectangle.center = containerView.center | |
| rectangle.layer.cornerRadius = 5.0 | |
| rectangle.backgroundColor = UIColor.whiteColor() | |
| containerView.addSubview(rectangle) | |
| UIView.animateWithDuration(2.0, animations: { () -> Void in | |
| let endingColor = UIColor(red: (255.0/255.0), green: (61.0/255.0), blue: (24.0/255.0), alpha: 1.0) | |
| circle.backgroundColor = endingColor | |
| let scaleTransform = CGAffineTransformMakeScale(5.0, 5.0) | |
| circle.transform = scaleTransform | |
| let rotationTransform = CGAffineTransformMakeRotation(3.14) | |
| rectangle.transform = rotationTransform | |
| }) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment