Revision: 15816
Initial Code
Initial URL
Initial Description
Initial Title
Initial Tags
Initial Language
at July 17, 2009 23:27 by arpit
Initial Code
UILabel *scoreLabel = [ [UILabel alloc ] initWithFrame:CGRectMake((self.bounds.size.width / 2), 0.0, 150.0, 43.0) ]; scoreLabel.textAlignment = UITextAlignmentCenter; scoreLabel.textColor = [UIColor whiteColor]; scoreLabel.backgroundColor = [UIColor blackColor]; scoreLabel.font = [UIFont fontWithName:@"Arial Rounded MT Bold" size:(36.0)]; [self addSubview:scoreLabel]; scoreLabel.text = [NSString stringWithFormat: @"%d", score];
Initial URL
Initial Description
Initial Title
Creating a UILabel dynamically
Initial Tags
iphone
Initial Language
Objective C