UIView
の履歴(No.3)
[
トップ
] [
新規
|
一覧
|
検索
|
最終更新
|
ヘルプ
|
ログイン
]
履歴一覧
差分
を表示
現在との差分
を表示
ソース
を表示
UIView
へ行く。
1 (2013-02-18 (月) 02:00:56)
2 (2013-02-18 (月) 02:17:34)
3 (2013-02-19 (火) 04:28:29)
Tag:
UIView
目次
†
目次
参考情報
Tips
frameとboundsの違いってなに?
convertRectって何?
↑
参考情報
†
UIKit
↑
Tips
†
↑
frameとboundsの違いってなに?
†
frameが親から見たときの矩形。boundsがローカル。
[iPhone] UIView の frame と bounds の違い | Sun Limited Mt.
↑
convertRectって何?
†
ios - Understand convertRect:toView:, convertRect:FromView:, convertPoint:toView: and convertPoint:fromView: methods - Stack Overflow
にある以下のコードが分かりやすい。
CGPoint originInSuperview = [superview convertPoint:CGPointZero fromView:subview];
subviewにおける(0, 0)は、superviewにおける、subviewの原点の位置、例えば(10, 20)とかになる。