0

UIVisualEffects - Blurry Pop Up Animation

Mở đầu

Khi viết các ứng dụng chúng ta rất thường xuyên sử dụng các alert/popup. Để user có thể forcus vô các alert/popup này thì thường ta sẽ có hiệu ứng làm mờ background. Chính vì nó thông dụng như vậy, hôm nay mình sẽ giới thiệu cách tạo ra Blurry Pop Up Animation đơn giản với UIVisualEffects

Thực hiện

  1. Tạo mới project bằng xcode và Embed trong Navigatorbar
  2. Add UIImageView làm background
  3. Add Visual Effect Views with Blur and Vibrancy
  • Có 3 Blur style: Extra light, Light, Dark
  • Uncheck checkbox vibrancy
  1. Add một UIView và UIBarButtonItem
  2. Tạo các IBOutlet và IBAction cho visualEffectViewShow Popup button
  3. Coding
  • Add đoạn code sau vào trong ViewDidLoad() của UIViewController
effect = visualEffectView.effect
visualEffectView.effect = nil
popupView.layer.cornerRadius = 5
  • Tạo mới 2 function animateIn()animateOut()
func animateIn() {
        self.view.addSubview(popupView)
        popupView.center = self.view.center
        
        popupView.transform = CGAffineTransform.init(scaleX: 1.3, y: 1.3)
        popupView.alpha = 0
        
        UIView.animate(withDuration: 0.4) { 
            self.visualEffectView.effect = self.effect
            self.popupView.alpha = 1
            self.popupView.transform = CGAffineTransform.identity
        }
    }
func animateOut() {
        UIView.animate(withDuration: 0.4, animations: { 
            self.popupView.transform = CGAffineTransform.init(scaleX: 1.3, y: 1.3)
            self.popupView.alpha = 0
            
            self.visualEffectView.effect = nil
        }) { (success:Bool) in
            self.popupView.removeFromSuperview()
        }
    }
  • Gọi 2 function vừa tạo ở trong các IBAction tương ưng của Show PopupDone button để show và dismiss popup view
@IBAction func showPopupView(_ sender: Any) {
        animateIn()
    }
@IBAction func dismissPopupView(_ sender: Any) {
        animateOut()
    }
  1. Run và xem kết quả.

Kết luận

Như vậy chúng ta đã tạo ra Blurry Pop Up Animation rất nhanh chóng và đơn giản bằng việc sử dụng UIVisualEffects. Hy vọng sẽ có ích cho các bạn

Thanks


All rights reserved

Viblo
Hãy đăng ký một tài khoản Viblo để nhận được nhiều bài viết thú vị hơn.
Đăng kí