Я надеюсь, что это может помочь:
Закругление углов изображения
все, что вам нужно сделать, это:
#import <QuartzCore/QuartzCore.h>
//Then do this. Change "theImageView" with the name of your ImageView
theImageView.layer.cornerRadius = 12;
theImageView.layer.masksToBounds = YES;