[스탠포드iOS] View
·
iOS/스탠포드 iOS 강의
1. ViewView는 좌표공간위계구조를 가지고 있음서로 겹칠수도 있음모든 뷰는 하나의 슈퍼뷰를 가짐여러개의 자식뷰를 가질 수 있음 * UIWindowThe UIView at the very, very top of the view hirearchy(even includes status bar)가장 상위의 뷰 계층에 존재앱마다 한개씩 존재 뷰를 넣고 빼는 동작을 하는 함수addSubview는 부모뷰에, removeFromSuperView는 삭제될 그 뷰에 호출addSubview(aView: UIView) //sent to aView's(soon to be) superviewremoveFromSuperView() //this is sent to be the view you want to remove(n..