matteogobbi / MGSpotyViewController

Beautiful viewController with a tableView and amazing effects like a viewController in the Spotify app.
MIT License
1.02k stars 106 forks source link

Add iOS8 Blur support #9

Closed fvisticot closed 10 years ago

fvisticot commented 10 years ago

support native blur Visual effect provided by iOS8

    UIVisualEffect *blurEffect;
    blurEffect = [UIBlurEffect effectWithStyle:UIBlurEffectStyleDark];
    UIVisualEffectView *visualEffectView;
    visualEffectView = [[UIVisualEffectView alloc] initWithEffect:blurEffect];
    visualEffectView.frame = imageView.bounds;
    [imageView addSubview:visualEffectView];
matteogobbi commented 10 years ago

Thank you for your suggest, but UIVisualEffect, doesn't allow to set a blur radius. Cheers!