Skip to content

Instantly share code, notes, and snippets.

@kakajika
Last active June 21, 2023 13:11
  • Star 26 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
A port of Kotlin's scope functions to Swift.
protocol ScopeFunc {}
extension ScopeFunc {
@inline(__always) func apply(block: (Self) -> ()) -> Self {
block(self)
return self
}
@inline(__always) func letIt<R>(block: (Self) -> R) -> R {
return block(self)
}
}
extension NSObject: ScopeFunc {}
let imageView = UIImageView().apply {
$0.contentMode = .ScaleAspectFit
$0.opaque = true
$0.frame = CGRectMake(...)
$0.setImageWithURL(NSURL(string: "..."))
}
CAKeyframeAnimation(keyPath: "transform.rotation").apply {
$0.beginTime = CACurrentMediaTime()+delay
$0.duration = 0.2
$0.repeatCount = 10
$0.values = [ 0.005*M_PI, -0.005*M_PI, 0.005*M_PI ]
imageView.layer.addAnimation($0, forKey: "wiggle")
}
@langleyd
Copy link

@Guang1234567 the use of the Int constructor is just for the purpose of illustration, the point is that let can useful with optional chaining.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment