iOS系统自带毛玻璃效果

来源:互联网 发布:松下多功能机软件下载 编辑:程序博客网 时间:2024/05/16 15:09
UIImageView* imageview = [[UIImageViewalloc]initWithImage:[UIImageimageNamed:@"屏幕快照2015-12-18下午10.51.33"]];
    imageview.
userInteractionEnabled= YES;
    imageview.
contentMode= UIViewContentModeScaleAspectFit;
    imageview.
frame= CGRectMake(0,0,375,668);
    [
self.viewaddSubview:imageview];
   
   
UIBlurEffect * blur = [UIBlurEffecteffectWithStyle:UIBlurEffectStyleDark];
   
UIVisualEffectView * effectview = [[UIVisualEffectViewalloc]initWithEffect:blur];
    effectview.
frame= CGRectMake(0,0, imageview.frame.size.width, imageview.frame.size.height);
    [imageview
addSubview:effectview];
   
   
UIButton *button = [UIButtonbuttonWithType:UIButtonTypeSystem];
    button.
frame= CGRectMake(10,50,60,60);
    [button
setTitle:@"btn"forState:UIControlStateNormal];
    [effectview.contentViewaddSubview:button];
1 0
原创粉丝点击