반응형
iOS 16.4 에서는 webview 디버깅(사파리 Inspect)이 동작하지 않습니다.
이럴때는 다음과 같이 해줘야 합니다.
if #available(iOS 16.4, *) {
webview.isInspectable = true
}
반응형
'iOS > Tip' 카테고리의 다른 글
UITextField hyphen(-) 연속 입력시 en dash(–)로 변경되는것 막기 (0) | 2023.12.14 |
---|---|
SFSymbol의 Monochrome, Hierarchical, Palette, Multicolor Mode (1) | 2023.12.05 |
@AppStorage에 Date 타입과 Array 타입 사용하기 (0) | 2023.12.04 |
UIView -> UIImage (0) | 2023.11.15 |
iOS App URL Cache 제거 (0) | 2023.11.10 |
iOS 16이상에서 TextKit 1을 사용하고자 할때 (0) | 2023.10.22 |
Application의 KeyWindow 구하기 (0) | 2023.10.15 |
Left Constraint 와 Leading Constraint 의 차이점 (0) | 2023.05.31 |