map -> object

Summary: Closes https://github.com/facebook/react-native/pull/8450

Differential Revision: D3488018

fbshipit-source-id: a30269c89e87b546f77da7a32b1c4c65d978459d
This commit is contained in:
sunnylqm 2016-06-27 03:03:24 -07:00 committed by Facebook Github Bot 7
parent bfb4c054f4
commit 4301998e15
1 changed files with 1 additions and 1 deletions

View File

@ -69,7 +69,7 @@ The CalendarManager module is instantiated on the Objective-C side using a [Cale
- number (`NSInteger`, `float`, `double`, `CGFloat`, `NSNumber`) - number (`NSInteger`, `float`, `double`, `CGFloat`, `NSNumber`)
- boolean (`BOOL`, `NSNumber`) - boolean (`BOOL`, `NSNumber`)
- array (`NSArray`) of any types from this list - array (`NSArray`) of any types from this list
- map (`NSDictionary`) with string keys and values of any type from this list - object (`NSDictionary`) with string keys and values of any type from this list
- function (`RCTResponseSenderBlock`) - function (`RCTResponseSenderBlock`)
But it also works with any type that is supported by the `RCTConvert` class (see [`RCTConvert`](https://github.com/facebook/react-native/blob/master/React/Base/RCTConvert.h) for details). The `RCTConvert` helper functions all accept a JSON value as input and map it to a native Objective-C type or class. But it also works with any type that is supported by the `RCTConvert` class (see [`RCTConvert`](https://github.com/facebook/react-native/blob/master/React/Base/RCTConvert.h) for details). The `RCTConvert` helper functions all accept a JSON value as input and map it to a native Objective-C type or class.