
hasBorder 메소드는 UIWindow의 Border를 확인하는 메소드입니다.
hasBorder가 true를 반환하는 조건은 다음과 같습니다.
- Window가 Modal로 보이지 않는 경우
- Window가 Full Screen이 아닌 경우
- Window가 Full Screen이면서 Size가 1.0, 1.0, 1.0, 1.0 인 경우
- Window가 _isFinishingTestRun_ 이 true 인 경우
- Window가 Debug 모드인 경우
이러한 조건 중 하나가 만족하면 hasBorder 메소드는 true를 반환합니다.
2025-04-20 22:16