转载:view 设置阴影+圆角

两个view设置阴影的效果:注意是view1添加到view2,不要反了

UIView *view1 = [[UIView alloc] init]; 

UIView *view2 = [[UIView alloc] init];   

view1.layer.cornerRadius = 5.0; 

view1.layer.masksToBounds = YES; 

view2.layer.cornerRadius = 5.0; 

view2.layer.shadowColor = [[UIColor blackColor] CGColor]; 

view2.layer.shadowOpacity = 1.0; 

view2.layer.shadowRadius = 10.0; 

view2.layer.shadowOffset = CGSizeMake(0.0f, 0.0f); 

[view2 addSubview:view1]; 

[view1 release]; 


你可能感兴趣的:(转载:view 设置阴影+圆角)