Posts

Showing posts with the label serialization

React Native JSONSerialization

I have a NSDictionary address = { address1 = "Ivy House"; address2 = "Sandy Lane"; city = Rush; country = Ireland; county = Dublin; email = "notknown@whatever.com"; mobile = "<null>"; postCode = "<null>"; smsAlert = "<null>"; telephone = 18437584; websiteAddress = "www.example.com"; }; and I need to pass this to react native as a launchOptions which accept JSON to be in this format. (The Quotes and = replaced with : etc ) RCTRootView *rootView = [[RCTRootView alloc] initWithBundleURL:jsCodeLocation moduleName:@"spotlight" initialProperties:nil launchOptions:launchOptions]; JSON "address": { "...