Tag: UIImageView

目次

参考情報

Tips

角を丸める

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;

トップ   新規 一覧 検索 最終更新   ヘルプ   最終更新のRSS