Simple Ripple View to add ripple effect to the view.
let fillColor = UIColor(red: 33/255, green: 150/255, blue: 243/255, alpha: 1)
let rippleView = SMRippleView(frame: baseView.frame, rippleColor: UIColor.clearColor(), rippleThickness: 0.2, rippleTimer: 1, fillColor: fillColor, animationDuration: 3, parentFrame: self.view.frame)
self.view.addSubview(rippleView)


