I have a UIImageView that is being rounded on my custom drawn UITableViewCell:
rect = CGRectMake(13, 10, 48, 48);
avatar = [[UIImageView alloc] initWithFrame:rect];
[self.contentView addSubview: avatar];
CALayer * l = [avatar layer];
[l setMasksToBounds:YES];
[l setCornerRadius:9.0];
I noticed my UITableView scrolling performance decreased a little bit. Not sure if it is related to the rounded corners though?