생각없이 사용했던 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 events. It remains in its superview’s list of subviews, however, and participates in autoresizing as usual. Hiding a view with subviews has the effect of hiding those subviews and any view descendants they might have. This effect is implicit and does not alter the hidden state of the receiver’s descendants.
Hiding the view that is the window’s current first responder causes the view’s next valid key view to become the new first responder.
The value of this property reflects the state of the receiver only and does not account for the state of the receiver’s ancestors in the view hierarchy. Thus this property can be false but the receiver may still be hidden if an ancestor is hidden.
자세한 설명을 읽어보면
기본값은 false ( 보여지는 상태 ) true로 설정하면 뷰가 숨겨진다.
뷰를 숨기면 그것의 window에서 사라지며, input 이벤트를 받지 않는다.
그러나 superview의 subview 목록에는 남아있고, autoresizing에 참여한다.
이 설명을 테스트해보기 위해서 프로젝트를 만들어보았다 ~
기본 화면 구성은 이렇게 ~
버튼이 3개가 있고 A 버튼 아래에 B 버튼을 배치해주다
C 버튼은 A 버튼의 bottom에 대해서 200만큼의 autolayout을 걸어준 상태다 ( A button인 것을 확인 )
aButton을 hidden 시켜주었다.
하지만 view의 subviews에는 아직 3개의 UIButton이 포함되어있다 !
It remains in its superview’s list of subviews
하지만 Window 내에서는 사라졌다 !
A hidden view disappears from its window
이 것도 테스트 해보아야지
Hiding the view that is the window’s current first responder causes the view’s next valid key view to become the new first responder.
위의 상태에서 버튼을 누르면 B 버튼이 응답한다.
원래는 A 버튼이 위에 있었기 때문에 A가 first responder가 되어 A가 출력되었다.
음... alpha와의 차이를 확인해보려고 했는데 alpha를 0으로 해도
bButton이 응답한다 ... ! ( 몰랐음 )
찾아보니 alpha가 0일 때 isHidden과 똑같이 클릭에 대해 응답하지 않는다고 한다 ~
https://stackoverflow.com/questions/5146947/what-is-the-impact-of-view-alpha-0-vs-view-hidden-yes
대신 view hierachy에는 isHidden과 다르게 aButton이 Window내에서 사라지지 않는다.
하위뷰가 있는 view를 isHidden 시켜주면 하위 뷰들 또한 모두 숨겨지는데
이건 화면에서 숨겨질 뿐 하위 뷰들의 isHidden 프로퍼티 값에 영향을 주는 것은 아니다 !
isHidden은 잘 사용하면 정말 편하고 좋다 !
특히 stackView 내에서 사용할 때 아주 편리하다 ... animation을 주지 않아도 스윽하고 사라진다
차지하고 있던 영역이 없어지기 때문에 자연스럽게 UI를 구성할 수 있다.
여기서 alpha가 0일 때를 테스트 해보았는데 isHidden과 차이가 있었다.
stackView가 화면 중앙에 오도록 layout을 잡아두었다.
isHidden으로 처리했을 때는 aButton이 사라지면서 bButton만 화면의 중앙에 표시된다.
alpha값을 조절해주었을 때는 aButton이 투명해지긴 하지만 영역이 그대로라 bButton이 중앙에서 약간 하단에 있는 것처럼 보이게 된다.
간단한거라도 뭔가 파고파고 하다보면 또 모르는게 계속 나온다 🤭
'iOS > iOS' 카테고리의 다른 글
[iOS] iOS 16 enable Developer Mode (2) | 2022.09.24 |
---|---|
[iOS] 커스텀 폰트, 다국어 폰트 적용하기 (0) | 2022.09.04 |
[iOS] 번역 꿀팁 정리 (0) | 2022.08.15 |
[iOS] Xcode에서 쓰는 주석 정리하기 (1) | 2022.06.11 |
[iOS] main.swift 에 대하여 - Command Line Tool (0) | 2022.02.12 |