test
C
code posted
created at 12 Nov 05:09
Edit
|
Back
1 2 3 4 5 6 7 8 9 10 |
#import "YourViewController.h" #import <QuartzCore/QuartzCore.h> //required to achieve corner radius //.....Setup your controller... - (void)viewDidLoad { [super viewDidLoad]; //add a corner radius to the UILabel self.label.layer.cornerRadius = 8; } //....the rest of your controller code goes here... |
324 Bytes in 2 ms with coderay