iOS-OC 代码风格片段

来源:互联网 发布:景甜用什么软件直播 编辑:程序博客网 时间:2024/06/06 12:57

_midView= ({    UIView* midView = [[UIViewalloc]initWithFrame:CGRectMake(0,0,self.frame.size.width,_height)];    midView.backgroundColor= [UIColor colorWithRed:0green:0blue:0alpha:0.8];    midView.clipsToBounds=YES;    midView.userInteractionEnabled=YES;    midView;});[selfaddSubview:_midView];
0 0