摘要:
UIView1.alpha设置视图的透明度.默认为1. // 完全透明 view.alpha = 0; // 不透明 view.alpha = 1;2.clipsToBounds// 默认是NO,当设置为yes时,超出当前视图的尺寸的内容和子视图不会显示。view.clipsToBounds = YES;3.hidden// 默认是NO,当设置为yes,视图就看不见了。view.hidden = YES;4.userInteractionEnabled // 默认为YES,如果设置为No,view就不能和用户交互了。(即不能响应事件)view.userInteractionEnabled = 阅读全文