直接上代码:
UILabel *aLable = [[UILabel alloc] initWithFrame:self.window.bounds];
aLable.backgroundColor = [UIColor cyanColor];
aLable.text = @"王";
aLable.textColor = [UIColor whiteColor];
aLable.textAlignment = NSTextAlignmentCenter ;
aLable.font = [UIFont fontWithName:@"Zapfino" size:230] ;
aLable.font = [UIFont boldSystemFontOfSize:230] ;
aLable.font = [UIFont systemFontOfSize:230] ;
aLable.font = [UIFont italicSystemFontOfSize:230] ;
aLable.lineBreakMode = NSLineBreakByTruncatingMiddle ;
aLable.numberOfLines = 1 ;
aLable.adjustsFontSizeToFitWidth = YES ;
aLable.shadowColor = [UIColor grayColor] ;
aLable.shadowOffset = CGSizeMake(-2, -2) ;
aLable.center = self.window.center;
[self.window addSubview:aLable];
[aLable release];