我正在尝试对 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";