ios – 试图给UILabel一个阴影,但它不会出现

前端之家收集整理的这篇文章主要介绍了ios – 试图给UILabel一个阴影,但它不会出现前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我试图在我的应用程序的一个类中给一个标签一个阴影,但它根本不起作用.什么都没有出现.我究竟做错了什么?
// Set label properties
titleLabel.font = [UIFont boldSystemFontOfSize:TITLE_FONT_SIZE];
titleLabel.adjustsFontSizeToFitWidth = NO;
titleLabel.opaque = YES;
titleLabel.backgroundColor = [UIColor clearColor];
titleLabel.textColor = titleLabelColor;
titleLabel.shadowColor = [UIColor blackColor];
titleLabel.shadowOffset = CGSizeMake(10,10);

它只是白色,没有阴影.

解决方法

在将titleLabel添加到self.view之前,只需添加此行
titleLabel.layer.masksToBounds = NO;

祝好运 !!

原文链接:https://www.f2er.com/iOS/332079.html

猜你在找的iOS相关文章