UIView
をテンプレートにして作成
[
トップ
] [
新規
|
一覧
|
検索
|
最終更新
|
ヘルプ
|
ログイン
]
開始行:
&tag(UIView);
*目次 [#l81aad26]
#contents
*参考情報 [#y1864817]
-[[UIKit]]
*Tips [#nfd61366]
**frameとboundsの違いってなに? [#ae15a2e1]
-frameが親から見たときの矩形。boundsがローカル。
-[[[iPhone] UIView の frame と bounds の違い | Sun Limite...
**convertRectって何? [#u954e482]
-[[ios - Understand convertRect:toView:, convertRect:From...
CGPoint originInSuperview = [superview convertPoint:CGPo...
-subviewにおける(0, 0)は、superviewにおける、subviewの原...
**背景画像を表示する [#ua2fc299]
-パターンを表示する場合、次のようにbackgroundColorを設定...
#pre{{
UIImage *image = [UIImage imageNamed:@"bg.png"];
view.backgroundColor = [UIColor colorWithPatternImage:ima...
}}
-一枚絵の画像を表示する場合、UIImageViewを使うのが簡単?
#pre{{
UIImageView* imageView = [[UIImageView alloc] init];
UIImage *image = [UIImage imageNamed:@"bg"];
imageView.frame = CGRectMake(0, 0, image.size.width, ...
imageView.image = image;
[self.view addSubview:imageView];
}}
終了行:
&tag(UIView);
*目次 [#l81aad26]
#contents
*参考情報 [#y1864817]
-[[UIKit]]
*Tips [#nfd61366]
**frameとboundsの違いってなに? [#ae15a2e1]
-frameが親から見たときの矩形。boundsがローカル。
-[[[iPhone] UIView の frame と bounds の違い | Sun Limite...
**convertRectって何? [#u954e482]
-[[ios - Understand convertRect:toView:, convertRect:From...
CGPoint originInSuperview = [superview convertPoint:CGPo...
-subviewにおける(0, 0)は、superviewにおける、subviewの原...
**背景画像を表示する [#ua2fc299]
-パターンを表示する場合、次のようにbackgroundColorを設定...
#pre{{
UIImage *image = [UIImage imageNamed:@"bg.png"];
view.backgroundColor = [UIColor colorWithPatternImage:ima...
}}
-一枚絵の画像を表示する場合、UIImageViewを使うのが簡単?
#pre{{
UIImageView* imageView = [[UIImageView alloc] init];
UIImage *image = [UIImage imageNamed:@"bg"];
imageView.frame = CGRectMake(0, 0, image.size.width, ...
imageView.image = image;
[self.view addSubview:imageView];
}}
ページ名: