From b91bf8eeacae4c873348cfbfb77bce2a6ca27c64 Mon Sep 17 00:00:00 2001 From: Pieter De Baets Date: Sat, 4 Jun 2016 16:25:55 -0700 Subject: [PATCH] Update RCTActionSheetManager.m Summary: We use [self bridge] in this class but weren't synthesizing the bridge getters/setters. Fixes https://github.com/facebook/react-native/issues/7890 Closes https://github.com/facebook/react-native/pull/7909 Differential Revision: D3390538 fbshipit-source-id: d75a1976af01b21887ddad5060ce635cf84abadd --- Libraries/ActionSheetIOS/RCTActionSheetManager.m | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Libraries/ActionSheetIOS/RCTActionSheetManager.m b/Libraries/ActionSheetIOS/RCTActionSheetManager.m index d38058fc493..483781d52bc 100644 --- a/Libraries/ActionSheetIOS/RCTActionSheetManager.m +++ b/Libraries/ActionSheetIOS/RCTActionSheetManager.m @@ -27,6 +27,8 @@ RCT_EXPORT_MODULE() +@synthesize bridge = _bridge; + - (dispatch_queue_t)methodQueue { return dispatch_get_main_queue();