- (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