设置字体阴影
Posted 原码
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了设置字体阴影相关的知识,希望对你有一定的参考价值。
self.view.backgroundColor = [UIColor grayColor];
self.text = [[UITextField alloc] initWithFrame:CGRectMake(100, 100, 200, 110)];
self.text.text = @"空间";
self.text.font = [UIFont systemFontOfSize:50 weight:20];
self.text.textColor = [UIColor redColor];
[self.view addSubview: self.text];
CALayer *layer = [self.text layer];
layer.borderColor = [[UIColor blueColor] CGColor];
layer.borderWidth = 2.0;
self.text.layer.shadowColor = [[UIColor blueColor]CGColor];
self.text.layer.shadowOpacity = 3;
self.text.layer.shadowOffset = CGSizeMake(15, 3);
self.text.layer.shadowRadius = 0.4;
[self.view addSubview:self.text];
以上是关于设置字体阴影的主要内容,如果未能解决你的问题,请参考以下文章