I have a login view which has a subview which has a UIActivityView and a UILabel saying "Signing In…". This subview has corners which aren't "rounded". How can I make them round?
Is there anyway to do it using IB?
|
I have a login view which has a subview which has a Is there anyway to do it using IB? |
||||
|
Try this
...
Note: If you are trying to apply rounded corners to a |
|||||||||||||||||||||
|
|
A different approach then the one Ed Marty did:
You need the setMasksToBounds for it to load all the objects from IB... i got a problem where my view got rounded, but did not have the objects from IB :/ this fixed it =D hope it helps! |
|||||||||
|
|
You can also use the "User Defined Runtime Attributes" feature of interface builder to set the key path This trick also works for setting layer.borderWidth however it will not work for |
|||||||||||||
|
|
Another method is here. http://www.iphonedevsdk.com/forum/tutorial-requests/18807-rounded-corners-uiview.html#post85415 |
|||||
|
|
As described in this blog post, here is a method to round the corners of a UIView:
The cool part about it is that you can select which corners you want rounded up. |
|||||
|
|
|||||||
|
|
You need to first import header file
Don't miss to use - |
||||
|
|
|
Please import Then: |
||||
|
|
|
You can also use an image:
|
|||
|
|
cornerRadiusproperty to the table using Interface Builder only, without having to use either pre-rendered images or set it in the code. – Daniel Skinner Dec 27 '12 at 16:06