I saw in the inspector that I can change the background color, but I'd like to also change the border color and thickness, is this possible?
Thanks
|
I saw in the inspector that I can change the background color, but I'd like to also change the border color and thickness, is this possible? Thanks |
|||
|
|
|
You need to use view's layer to set border property. e.g:
You also need to link with QuartzCore.framework to access this functionality. |
|||||||||||||
|
|
You can also create border with the color of your wish..
*r,g,b are the values between 0 to 255..So you know the RGB value of color you can set it here.. :-) |
|||||||
|
|
When I use Vladimir's QuartzCore solution, and on top of the view I have an animation, like a modal UINavigationController dismissing, I see a lot of glitches happening. So, another way to achieve this, but without the glitches, is to make a custom UIView and implement the
|
|||||
|
|
If you want to add different border on different sides, may be add a subview with the specific style is a way easy to come up with. |
|||
|
|
|
If you didn't want to edit the layer of a UIView, you could always embed the view within another view. The parent view would have its background color set to the border color. It would also be slightly larger, depending upon how wide you want the border to be. Of course, this only works if your view isn't transparent and you only want a single border color. The OP wanted the border in the view itself, but this may be a viable alternative. |
|||
|
|
|
I wouldn't suggest overriding the drawRect due to causing a performance hit. Instead, I would modify the properties of the class like below (in your custom uiview):
I didn't see any glitches when taking above approach - not sure why putting in the initWithFrame stops these ;-) |
|||
|
|