giridharvc7 / VCFloatingActionButton

A Floating Action Button just like Google inbox for iOS
MIT License
296 stars 75 forks source link

Remove bgView opacity #10

Open xarlotie opened 9 years ago

xarlotie commented 9 years ago

Hi,

how do we set alpha of bgView to 0 but make menuTable still visible. Thanks!

ghost commented 8 years ago

Comment out these lines in setupButton function:

UIBlurEffect *blur = [UIBlurEffect effectWithStyle:UIBlurEffectStyleExtraLight];
UIVisualEffectView *vsview = [[UIVisualEffectView alloc]initWithEffect:blur];

vsview.frame = _bgView.bounds;
_bgView = vsview;

Set background view to clear color:

_bgView.backgroundColor = [UIColor clearColor];