以编程方式创建UILabel
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了以编程方式创建UILabel相关的知识,希望对你有一定的参考价值。
Reference: http://iosfonts.com/
- (void)viewDidLoad { [super viewDidLoad]; CGRect labelFrame = CGRectMake(10,10,200,44); UILabel *myLabel = [[UILabel alloc] initWithFrame:labelFrame]; myLabel.backgroundColor = [UIColor clearColor]; myLabel.textColor = [UIColor redColor]; myLabel.font = [UIFont fontWithName:@"Verdana" size:18.0]; myLabel.numberOfLines = 2; myLabel.text = @"Hello World Second line"; myLabel.shadowColor = [UIColor darkGrayColor]; myLabel.shadowOffset = CGSizeMake(1.0,1.0); [self.view addSubview:myLabel]; [myLabel release]; }
以上是关于以编程方式创建UILabel的主要内容,如果未能解决你的问题,请参考以下文章