Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
466 views
in Technique[技术] by (71.8m points)

ios - Syntax of Block in Swift

I am trying to rewrite from Objective-C to Swift, I cannot work out the syntax or understand the docs

Here is a simplified example in Objective-C I wrote:

[UIView animateWithDuration:10.0 animations:^{self.navigationController.toolbar.frame = CGRectMake(0,10,0,10);}];

How do I write this in Swift?

This is the template autocomplete gives:

UIView.animateWithDuration(duration: NSTimeInterval, animations: (() -> Void))
See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

This is the swift closure format:

{(parameter:type, parameter: type, ...) -> returntype in
    //do stuff  
}

This is what you should do:

//The animation closure will take no parameters and return void (nothing).
UIView.animateWithDuration(duration: NSTimeInterval, animations: {() -> Void in
    //Animate anything.
})

Here is the documentation for closures.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...