設定UIView的物件不透明

猴子救兵發表於2016-04-15

View = [[UIView alloc]initWithFrame:self.view.bounds];

    View.backgroundColor = [RGB(192, 192, 192) colorWithAlphaComponent:0.7]; //這個是單獨設定view的透明度.不影響它的物件;

如果設定 View.alpha = 0.5;這個全域性透明.所以我們不用這個//

    View.hidden = YES;

    [self.view addSubview:View];

/下面直接在上面加東西就可以了

UIImageView *  imageview = [[UIImageView alloc]initWithFrame:Rect(30, (kScreenHeight-200)/2,kScreenWidth-60, 162)];

    imageview.layer.masksToBounds = YES; //沒這句話它圓不起來

    imageview.layer.cornerRadius = 8.0; //設定圖片圓角的尺度

    imageview.backgroundColor = [UIColor whiteColor];

    imageview.userInteractionEnabled = YES;

 

    [View addSubview:imageview];

相關文章