isHidden

    [iOS] isHidden에 대하여

    생각없이 사용했던 isHidden이라는 프로퍼티에 대해 정리해보고자 글을 쓴다 공식문서 https://developer.apple.com/documentation/uikit/uiview/1622585-ishidden isHidden은 UIView의 Instance Property이다 뷰를 숨기고 싶을 때 이 값을 true로 해주면 뷰가 숨겨진다. Setting the value of this property to true hides the receiver and setting it to false shows the receiver. The default value is false. A hidden view disappears from its window and does not receive input e..