I have a native iOS project in which we have integrated react native. Here we have a screen A in native iOS(swift) and screen B in React-native.
When user is in screen A clicks on component and navigated to screen B. Inside screen B then user selects a option and passes that value to brigde between the two parts using NativeModules.
After that screen B gets dismissed and user is again able to see the screen A. The value which is passed through bridge can be accessed inside a function in screen A view controller, but when trying to set that value to UITextField getting error Thread 1: Fatal error: Unexpectedly found nil while implicitly unwrapping an Optional value
Expecting to set the value which is received from screen B in screen A gets saved in UITextField to be utilised further