gpt4 book ai didi

iphone - 将阴影应用于 UITextView.layer?

转载 作者:可可西里 更新时间:2023-11-01 03:42:35 24 4
gpt4 key购买 nike

我想在 UITextView 上应用阴影,使它看起来像 UITextField。有什么想法吗?我正在使用

textView.layer.shadowOpacity=0.8;
textView.layer.shadowColor=[[UIColor lightGrayColor] CGColor];
textView.layer.shadowOffset=CGSizeMake(0, 0);
textView.layer.shadowRadius=3;
textView.layer.cornerRadius=3;

但如果 UITextView 背景是透明的,它会给 UITextView 的文本添加阴影。那么有什么想法可以像这样给 UITextView 层添加阴影->

enter image description here

最佳答案

    // Add shadow
[textView.layer setBackgroundColor: [[UIColor whiteColor] CGColor]];
[textView.layer setBorderColor: [[UIColor grayColor] CGColor]];
[textView.layer setBorderWidth: 1.0];
[textView.layer setCornerRadius:12.0f];
[textView.layer setMasksToBounds:NO];
textView.layer.shouldRasterize = YES;
[textView.layer setShadowRadius:2.0f];
textView.layer.shadowColor = [[UIColor blackColor] CGColor];
textView.layer.shadowOffset = CGSizeMake(1.0f, 1.0f);
textView.layer.shadowOpacity = 1.0f;
textView.layer.shadowRadius = 1.0f;

关于iphone - 将阴影应用于 UITextView.layer?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9479135/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com