gpt4 book ai didi

iphone - UILabel 上的阴影不出现

转载 作者:行者123 更新时间:2023-12-03 20:17:50 24 4
gpt4 key购买 nike

我想给我的 UILabel 添加一点阴影,但它没有显示出来。

companyLabel.textAlignment = UITextAlignmentLeft;
companyLabel.font = [UIFont fontWithName:@"Arial" size:13];
companyLabel.adjustsFontSizeToFitWidth = YES;
companyLabel.minimumFontSize = 10.0;
companyLabel.backgroundColor = [UIColor clearColor];
companyLabel.textColor = [UIColor colorWithRed:103.0/255.0 green:103.0/255.0 blue:103.0/255.0 alpha:1.0];
companyLabel.layer.shadowColor = [[UIColor colorWithRed:241.0/255.0 green:241.0/255.0 blue:241.0/255.0 alpha:1.0] CGColor];
companyLabel.layer.shadowOffset = CGSizeMake(0.0, -1.0);
companyLabel.highlightedTextColor = [UIColor whiteColor];

最佳答案

您没有设置 shadowOpacity,默认为 0.0。您需要将其设置为其他值才能显示阴影。但是,现在甚至没有理由触摸 CALayer,因为 UILabel 有自己的 shadowColorshadowOffset 属性。

companyLabel.shadowColor = [UIColor colorWithRed:241.0/255.0 green:241.0/255.0 blue:241.0/255.0 alpha:1.0];
companyLabel.shadowOffset = CGSizeMake(0.0, -1.0);

关于iphone - UILabel 上的阴影不出现,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7250442/

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