UIImageView
をテンプレートにして作成
[
トップ
] [
新規
|
一覧
|
検索
|
最終更新
|
ヘルプ
|
ログイン
]
開始行:
&tag(UIImageView);
*目次 [#x64a47aa]
#contents
*参考情報 [#ye8eb5f6]
*Tips [#aee1fc1f]
**角を丸める [#z296889d]
[[UIImage rounded corners - Stack Overflow:http://stackov...
#pre{{
//ヘッダのインクルードが必要
#import <QuartzCore/QuartzCore.h>
//角を丸める
imageView.layer.cornerRadius = 5.0;
imageView.layer.masksToBounds = YES;
//ボーダーをつける
imageView.layer.borderColor = [UIColor lightGrayColor].CG...
imageView.layer.borderWidth = 1.0;
}}
&color(red){※注意) QuartsCore.frameworkをフレームワークの...
終了行:
&tag(UIImageView);
*目次 [#x64a47aa]
#contents
*参考情報 [#ye8eb5f6]
*Tips [#aee1fc1f]
**角を丸める [#z296889d]
[[UIImage rounded corners - Stack Overflow:http://stackov...
#pre{{
//ヘッダのインクルードが必要
#import <QuartzCore/QuartzCore.h>
//角を丸める
imageView.layer.cornerRadius = 5.0;
imageView.layer.masksToBounds = YES;
//ボーダーをつける
imageView.layer.borderColor = [UIColor lightGrayColor].CG...
imageView.layer.borderWidth = 1.0;
}}
&color(red){※注意) QuartsCore.frameworkをフレームワークの...
ページ名: