0

我正在尝试对 UILabel 应用阴影,但我在字体上得到了一个难看的上阴影。

正如你所看到的,阴影已经离字体很远了,但是我得到了这个有阴影的上部东西……字体应该是纯白色的。

任何想法?我可以在上面放另一个 UILabel,但我认为这不是最干净的解决方案......

float width = 500.0f;
    UIShadowLabel *label = [[UIShadowLabel alloc] initWithFrame:CGRectMake((self.view.bounds.size.width * 0.5) - (width * 0.5), 150.0, width, 100.0) ];
    label.backgroundColor = [UIColor clearColor]; 
    label.shadowColor = UIColorFromRGB(0xb1b0b0);
    label.shadowRadius = 3.0f;
    label.shadowOffset = CGSizeMake(15.0f, 15.0f);
    label.textAlignment =  UITextAlignmentCenter;
    label.textColor = [UIColor whiteColor];
    label.font = [UIFont fontWithName:@"Arial" size:(100.0)];
    [self.view addSubview:label];
    label.text = @"am";

在此处输入图像描述

4

1 回答 1

0

根据您的需要使用以下代码

[self.yourView.layer setShadowColor:[UIColor blackColor].CGColor];
[self.yourView.layer setShadowOpacity:0.8];
[self.yourView.layer setShadowRadius:3.0];
[self.yourView.layer setShadowOffset:CGSizeMake(2.0, 2.0)];
于 2015-06-06T10:30:52.033 回答