próbuję uporządkować ten komunikat o błędzie:Alert.alert AlertManager z params wyjątkiem
Exception '-[_NSDisctionary0 length]: unrecognized selector sent to instance 0x78964120' was thrown while invoking alerWithArgs on target AlertManager with params
To pochodzących z mojego wiersza kodu:
const response.error = 'bad credentials'
Alert.alert('Login error', response.error, [{ text: 'Ok' }])
Nawet kiedy kopiuj/wklej z Dokumentacja Facebook Dostaję błąd:
Alert.alert(
'Alert Title',
'My Alert Msg',
[
{text: 'Ask me later', onPress:() => console.log('Ask me later pressed')},
{text: 'Cancel', onPress:() => console.log('Cancel Pressed'), style: 'cancel'},
{text: 'OK', onPress:() => console.log('OK Pressed')},
]
)
Komponent jest importowany i widoczny z komunikatu o błędzie. Zgaduję.
Czy ktoś się z tym zetknął? Nie wiesz, co z tym zrobić?
Jakiej wersji RN używasz? –
Używanie exponentJS v12 .. tak rn 0.40.0 – fozzarelo
Myślisz, że to może być wykładnik, a nie problem RN? jestem zdezorientowany .. – fozzarelo