Avatar
Deleted User 9/3/2017 7:49 AM
クロージャを2つ以上引数に渡す場合はTrailing Closuresを使わずに、分かりやすくちゃんとラベルを付けましょうってことですよね? UIView.animate( withDuration: 1.0, animations: { someView.alpha = 0.0 }, completion: { _ in someView.removeFromSuperview() } )
🙏 1