Brown Field integration
See original GitHub issueYou want to:
I’m start to implementing a simple feature but got stuck on the iOS native side, I’m not an experienced iOS dev so bear with me on this.
What I need is a way on the native side read/write the Asyncstorage while keep the functionality on the React Native side (because the JS thread will be dead after the app is in the bg for a while)
Details:
What I’ve done:
#import <RNCAsyncStorage/RNCAsyncStorage.h>
- in my native module, I have
NSString *result = [[[RNCAsyncStorage alloc] init] _getValueForKey]
, but I got an error statingNo visible @interface for 'RNCAsyncStorage' declares the selector '_getValueForKey'
Any idea how this should be implemented? Thanks!
Issue Analytics
- State:
- Created 3 years ago
- Comments:8 (3 by maintainers)
Top Results From Across the Web
Brownfield Integration: Why It's Important For Modernizing ...
Brownfield integration means integrating existing systems with the rest of the world. A greenfield system could be a system that is developed ...
Read more >Brownfield vs. Greenfield Development: What's the Difference ...
Brownfield software development refers to the development and deployment of a new software system in the presence of existing or legacy software systems....
Read more >Brownfield (software development) - Wikipedia
Brownfield development is a term commonly used in the information technology industry to describe problem spaces needing the development and deployment of ...
Read more >Brownfield integration | Async Storage - GitHub Pages
If you're embedding React Native into native application, you can also integrate Async Storage module, so that both worlds will use one storage...
Read more >Integrating Utilities on Large Brownfield Projects - AIChE
Major brownfield capital projects typically involve partnering with an engineering, procurement, and construction (EPC) company. A vast amount ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Have a look at example app’s AppDelegate
Gotcha, thanks for clearing that up for me.