I want to add outline on an image, do you have any idea? Note: I don't need the border of imageview, not imageview.layer.borderColor nor image.layer.borderWidth;
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Try this :
source : http://www.icodesnip.com/snippet/objective-c/add-image-border-to-uiimage |
|||||||
|
|
This may not be a very clean way but may work and is simple.
The sizes of the view and imageView will what give your image a border. eg. (0, 0, 10, 10) -> view frame (1, 1, 8, 8) -> imageView frame This will give border of "1" to the image. |
|||
|
|