Advertisement
Guest User

Untitled

a guest
May 2nd, 2016
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. UILabel *title = [[UILabel alloc] init];
  2. CGRect frame = title.frame;
  3. frame.origin.y = 30;
  4. frame.origin.x = 100;
  5. title.frame= frame;
  6. title.text = @"TWINSTONES";
  7. title.backgroundColor = [UIColor clearColor];
  8. title.font = [UIFont fontWithName:@"TWINSTONES" size:100.0];
  9. [title setTextColor:[UIColor colorWithWhite:0.9 alpha:1.0]];
  10. title.numberOfLines = 0;
  11. [title sizeToFit];
  12. [self.view addSubview:title];
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement