Tuesday, February 19, 2013

цвет текста в UILabel

http://devios.ru/pervoe-prilozhenie-dlya-iphone/

- (void)viewDidLoad {
[super viewDidLoad];
 CGRect frame = CGRectMake(10, 10, 300, 25);
 UILabel *helloLabel = [[UILabel alloc] initWithFrame:frame];
 helloLabel.text = @"Hello deviOS.ru";
 helloLabel.textColor = [UIColor redColor];
 helloLabel.textAlignment = UITextAlignmentCenter;
[self.view addSubview:helloLabel];
[helloLabel release];
}

No comments:

Post a Comment