/ Published in: Objective C
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
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];