목록ios13 (2)
바르고 뜨겁게
react native [ERROR] Signing for "[ project name ]" requires a development team. Select a development team in the Signing & Capabilities editor.Code signing is required for product type 'Unit Test Bundle' in SDK 'iOS 13.1' 해결 방법1. Build Settings - Signing - Code Signing IDentity 하위 항목을 모두 IOS Developer 로 바꿔준다.2. Xcode → Product → Clean3. Xcode 재시작
자바스크립트/React Native
2019. 11. 22. 15:29
react-native IOS dark mode 미사용, 사용 안하기
https://github.com/facebook/react-native/issues/26619#issuecomment-536191518https://github.com/facebook/react-native/issues/26299 IOS 13 버전에 다크모드가 추가되면서 디폴트 TEXT 컬러가 흰색으로 바껴서 밝은 배경에선 보이지 않는다거나,StatusBar 아이콘이 흰색으로 바껴서 보이지 않는 등의 문제점들이 발생따라서, 다크모드를 사용 하지 않기 위해선 react native 코드를 아래처럼 수정 Light-mode 강제적용appDelegate.m if (@available(iOS 13.0, *)) { rootView.overrideUserInterfaceStyle = UIUserInterfaceS..
자바스크립트/React Native
2019. 11. 21. 15:00