Skip to content

Commit f73fa4e

Browse files
committed
fix(runtime): Do not hide unavailable global symbols
In Xcode 11 beta `UIDocumentInteractionControllerDelegate` has been declared as unavailable before SDK 13.0 but it actually exists since 3.2. see https://developer.apple.com/documentation/uikit/uidocumentinteractioncontrollerdelegate
1 parent 3b06474 commit f73fa4e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/NativeScript/GlobalObject.mm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -328,7 +328,7 @@ static void runLoopBeforeWaitingPerformWork(CFRunLoopObserverRef observer, CFRun
328328
if (symbolName == nullptr)
329329
return false;
330330

331-
const Meta* symbolMeta = Metadata::MetaFile::instance()->globalTable()->findMeta(symbolName);
331+
const Meta* symbolMeta = Metadata::MetaFile::instance()->globalTable()->findMeta(symbolName, false);
332332
if (symbolMeta == nullptr)
333333
return false;
334334

0 commit comments

Comments
 (0)