THPinViewController icon indicating copy to clipboard operation
THPinViewController copied to clipboard

Use UIBlurEffect for blur

Open BadChoice opened this issue 8 years ago • 0 comments

    self.blurView = [[UIVisualEffectView alloc] initWithEffect:blurEffect];
    self.blurView.frame = self.parentVc.view.bounds;
    self.blurView.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight;
    [self.parentVc.view addSubview:self.blurView];

BadChoice avatar Nov 13 '17 15:11 BadChoice