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";