I have a UIImageView on each of my UITableView cells that display a remote image (using SDWebImage ). I made several styles of the QuartzCore layer to represent the image, for example:
UIImageView *itemImageView = (UIImageView *)[cell viewWithTag:100]; itemImageView.layer.borderWidth = 1.0f; itemImageView.layer.borderColor = [UIColor concreteColor].CGColor; itemImageView.layer.masksToBounds = NO; itemImageView.clipsToBounds = YES;
So now I have a 50x50 square with a faint gray border, but I would like to make it circular, not square. The Hemoglobe application uses circular images in the form of tables and the effect that I would like to achieve. However, I do not want to use cornerRadius , as this degrades my FPS scrolling.
Here Hemoglobe shows the circular UIImageViews :

Is there any way to get this effect? Thank.
ios objective-c uitableview uiimageview
swiftcode Jul 18 '13 at 11:15 2013-07-18 11:15
source share