Guest User

Untitled

a guest
Jul 15th, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. UIButton *myButton = [UIButton buttonWithType:UIButtonTypeCustom];
  2. myButton.frame = CGRectMake(0, 0, 100, 100 );
  3. myButton.backgroundColor = [UIColor greenColor];
  4. [[myButton layer] setBorderColor:[[UIColor whiteColor] CGColor]];
  5. [[myButton layer] setBorderWidth:2.3];
  6. [[myButton layer] setCornerRadius:15];
  7. [myButton setClipsToBounds: YES];
  8.  
  9. UILabel *date = [[UILabel alloc]initWithFrame:CGRectMake(10, 10, 50, 50 )];
  10. date.backgroundColor = [UIColor clearColor];
  11. date.text = @"15";
  12. //date.adjustsFontSizeToFitWidth = YES;
  13. date.font = [UIFont boldSystemFontOfSize:30];
  14. date.alpha = 0.7;
  15. [myButton addSubview:date];
Add Comment
Please, Sign In to add comment