VCFloatingActionButton icon indicating copy to clipboard operation
VCFloatingActionButton copied to clipboard

Remove bgView opacity

Open xarlotie opened this issue 10 years ago • 1 comments

Hi,

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

xarlotie avatar Jul 27 '15 06:07 xarlotie

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];

ghost avatar Nov 12 '15 12:11 ghost