2022-07-01から1ヶ月間の記事一覧

react-native-mmkvを導入したら Undefined symbols for architecture x86_64 が出た

react-native0.68.4 どうやら react-native-firebase を導入した時にPodfileに加えた use_frameworks! が原因っぽい。 結論としては、react-native-mmkvを静的ライブラリとして読み込んであげると解決した。 pre_install do |installer| installer.pod_targe…

ExpoでiOSのスキーマ加えてビルドしたら error: filename "ExpoModulesProvider.swift" used twice: が出た

TARGETS -> Build Phases -> Compile Sources に ExpoModulesProvider.swift が2つ登録されてしまっていたのでいらない方消す。

Swiftでマップや位置情報を使う

Swift初心者のメモです。 iOS15で検証 マップ 基本となるインスタンス import MapKit let mapView = MKMapView() ユーザーの現在地表示(青ポチのあれ) mapView.showsUserLocation = true トラッキングモード(青ポチが自動で移動するあれ) mapView.userTr…