IOS 개발
[iOS] var children: [UIViewController] { get }
0miming
2020. 4. 13. 11:09
children
var children: [UIViewController] { get }
요약
현재 뷰 컨트롤러의 자식인 뷰 컨트롤러의 배열입니다.
Summary
An array of view controllers that are children of the current view controller.
Declaration
var children: [UIViewController] { get }
토론
이 속성에는 제시된 뷰 컨트롤러가 포함되어 있지 않습니다. 이 프로퍼티는 커스텀 컨테이너 뷰 컨트롤러의 구현으로만 읽을 수 있습니다.
Discussion
This property does not include any presented view controllers. This property is only intended to be read by an implementation of a custom container view controller.
[참조 : Open in Developer Documentation]