I have React-Native TextInput with autoCorrect prop
<TextInput
placeholder={placeholderText}
value={this.props.value}
onChangeText={this.props.onChange}
autoCorrect={false}
/>
If the autoCorrect is set to false, Then there are no predictions in iPhone 6(iOS 12) and iPhone 11(iOS 15), Which means working as expected. But surprisingly in iPhone SE(iOS 15) still predictions are appearing though autoCorrect is set to false. Which means predictions are appearing irrespective of autoCorrect value in iPhone SE.
Can some one explain the reason behind this phenomenon please? Thank You.
If you do not have any expertise in React-Native, At least can you please let m know that, Will there be any functionality differences between iPhone SE and the iPhone modals?
Thank You.
Post
Replies
Boosts
Views
Activity
I am a react-native developer and using react-native-unimodules library.
I have recently updated my Xcode to v13. Since then when I try to archive I am getting following error
Undefined symbol: _OBJC_METACLASS_$_UMAppDelegateWrapper
Undefined symbol: _OBJC_CLASS_$_UMAppDelegateWrapper
Undefined symbol: _OBJC_CLASS_$_UMModuleRegistryProvider
Undefined symbol: _OBJC_CLASS_$_UMModuleRegistryAdapter
If I run in simulator or real device, Then there is no error. Getting errors only when I tired to archiving. I have done all the library(react-native-unimodules) setup properly as per documentation and it was working fine before Xcode 13 update.
This seems like some library linking issue. But not sure what to and where to link.
Can some one help me to get rid of this issue?