I have the following code to make UIImageView in each of my UITableView cells rounded corners:
- (void)awakeFromNib {
I want the images to have a small gap between them, and decided that I can use the border width to make this happen. The following is an image of what actually happened:

This is the foggy black border that I want to know about how to get rid of. I would like to think that there is a way to do this using the width of the border. If not, the best approach might be just resizing the image itself and just setting the border width to 0.
ios objective-c quartz-graphics uiimageview
Matthew
source share