美文网首页
iOS uiview 简单加阴影

iOS uiview 简单加阴影

作者: 白牛桑 | 来源:发表于2016-08-17 18:42 被阅读43次

    UIView *containerView = [[UIView alloc] initWithFrame:CGRectMake(20, 20, 280, 300)];

    //    [containerView.layer setCornerRadius:5];

    containerView.backgroundColor = [UIColor greenColor];

    containerView.layer.shadowOffset = CGSizeMake(0, 2);

    containerView.layer.shadowOpacity = 0.80;

    [self.view addSubview:containerView];

    相关文章

      网友评论

          本文标题:iOS uiview 简单加阴影

          本文链接:https://www.haomeiwen.com/subject/srnmsttx.html