Swift의 블록 (animateWithDuration : animations : completion :) Swift에서 블록을 작동시키는 데 문제가 있습니다. 다음은 완료 블록없이 작동 한 예입니다. UIView.animateWithDuration(0.07) { self.someButton.alpha = 1 } 또는 후행 폐쇄없이 : UIView.animateWithDuration(0.2, animations: { self.someButton.alpha = 1 }) 하지만 완료 블록을 추가하려고하면 작동하지 않습니다. UIView.animateWithDuration(0.2, animations: { self.blurBg.alpha = 1 }, completion: { self.blurBg.hidden ..