Create Custom UIView [closed]
In my App inside a view there are 4 UIView
with circular corner each in four corners of the view. inside each view there are three labels
with different title. can any one tell me how can I Customize my Own View
?
You can have rounded corners by accessing the layers property of the view.
[view.layer setCornerRadius:5.0];
[view.layer setMasksToBounds:YES];
Having no idea what you're asking whatsoever, I'd recommend you check out this page in Apple's docs.
精彩评论