&tag(UIView);
*目次 [#l81aad26]
#contents
*参考情報 [#y1864817]
-[[UIKit]]
*Tips [#nfd61366]
**frameとboundsの違いってなに? [#ae15a2e1]
-frameが親から見たときの矩形。boundsがローカル。
-[[[iPhone] UIView の frame と bounds の違い | Sun Limited Mt.:http://blog.syuhari.jp/archives/2072]]
**convertRectって何? [#u954e482]
-[[ios - Understand convertRect:toView:, convertRect:FromView:, convertPoint:toView: and convertPoint:fromView: methods - Stack Overflow:http://stackoverflow.com/questions/8465659/understand-convertrecttoview-convertrectfromview-convertpointtoview-and]]にある以下のコードが分かりやすい。
 CGPoint originInSuperview = [superview convertPoint:CGPointZero fromView:subview];
-subviewにおける(0, 0)は、superviewにおける、subviewの原点の位置、例えば(10, 20)とかになる。


**背景画像を表示する [#ua2fc299]
-パターンを表示する場合、次のようにbackgroundColorを設定する
#pre{{
UIImage *image = [UIImage imageNamed:@"bg.png"];
view.backgroundColor = [UIColor colorWithPatternImage:image];
}}
-一枚絵の画像を表示する場合、UIImageViewを使うのが簡単?
#pre{{
    UIImageView* imageView = [[UIImageView alloc] init];
    UIImage *image = [UIImage imageNamed:@"bg"];
    imageView.frame = CGRectMake(0, 0, image.size.width, image.size.height);
    imageView.image = image;
    [self.view addSubview:imageView];
}}


トップ   編集 差分 履歴 添付 複製 名前変更 リロード   新規 一覧 検索 最終更新   ヘルプ   最終更新のRSS