TIL: RN | iOS 다크모드 force 해제

Lumpen·2023년 2월 7일

ReactNative

목록 보기
8/53

info.plist

<key>UIUserInterfaceStyle</key>
<string>Light</string>

추가했는데도 안된다..

AppDelegate.m

  if (@available(iOS 13.0, *)) {
      rootView.backgroundColor = [UIColor whiteColor]; // 이 곳을 whiteColor 로 설정해주면 강제 white 모드..
  } else {
      rootView.backgroundColor = [UIColor whiteColor];
  }
profile
암흑개발자

0개의 댓글