remove property for safariview

since the property is accessed outside of this module there's no point in having it as property
This commit is contained in:
Koen Punt
2018-01-03 15:49:03 +01:00
parent 64f071d2c7
commit 8a4d8d00be
2 changed files with 1 additions and 2 deletions

View File

@@ -5,6 +5,4 @@
@interface SafariViewManager : RCTEventEmitter <RCTBridgeModule, SFSafariViewControllerDelegate>
@property (nonatomic) SFSafariViewController *safariView;
@end

View File

@@ -7,6 +7,7 @@
@implementation SafariViewManager
{
bool hasListeners;
SFSafariViewController *_safariView;
}
RCT_EXPORT_MODULE()