我试图在我的应用程序的一个类中给一个标签一个阴影,但它根本不起作用.什么都没有出现.我究竟做错了什么?
@H_403_2@// 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);
它只是白色,没有阴影.