6
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

UIViewのframeとboundsとcenter

Last updated at Posted at 2018-12-08

049.png
#frame

親View(SuperView)からみて、現在のViewのサイズと位置を保持するプロパティ。上記図では、親Viewからみて、(40,40)の位置に現在Viewの開始地点があり、現在Viewは高さ=380,横幅=240という情報を保持している。

#bounds

現在のViewからみて、現在のViewのサイズと位置を保持するプロパティ。上記図では、開始地点は(0,0)で、高さ=380,横幅=240という情報を保持する。

#center
親View(SuperView)からみた、現在のViewの中央位置を保持する。上記図では、現在Viewの中央位置は、親Viewの(160,230)のポイントにあるという情報を保持する。!

6
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
6
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?