Tag: UIImageView
UIImage rounded corners - Stack Overflowより
//ヘッダのインクルードが必要 #import <QuartzCore/QuartzCore.h> //角を丸める imageView.layer.cornerRadius = 5.0; imageView.layer.masksToBounds = YES; //ボーダーをつける imageView.layer.borderColor = [UIColor lightGrayColor].CGColor; imageView.layer.borderWidth = 1.0;