From 87bc0b913e61a62fc643bce7c762c5e468eb0f60 Mon Sep 17 00:00:00 2001 From: Dominic Go Date: Fri, 27 Sep 2024 18:05:20 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9E=20Fix:=20`UniqueIdentifierSynthesi?= =?UTF-8?q?zing`=20Conformance?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...Controller+UniqueIdentifierSynthesizing.swift | 16 ++++++++++++++++ ...ontroller+UniqueIdentifierSynthesizing.swift} | 2 +- 2 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 ios/Temp/UIPresentationController+UniqueIdentifierSynthesizing.swift rename ios/Temp/{NSObject+UniqueIdentifierSynthesizing.swift => UIViewController+UniqueIdentifierSynthesizing.swift} (77%) diff --git a/ios/Temp/UIPresentationController+UniqueIdentifierSynthesizing.swift b/ios/Temp/UIPresentationController+UniqueIdentifierSynthesizing.swift new file mode 100644 index 00000000..87efde29 --- /dev/null +++ b/ios/Temp/UIPresentationController+UniqueIdentifierSynthesizing.swift @@ -0,0 +1,16 @@ +// +// UIPresentationController+UniqueIdentifierSynthesizing.swift +// react-native-ios-modal +// +// Created by Dominic Go on 9/27/24. +// + +import UIKit + + +extension UIPresentationController: UniqueIdentifierSynthesizing { + // empty requirements +}; + + + diff --git a/ios/Temp/NSObject+UniqueIdentifierSynthesizing.swift b/ios/Temp/UIViewController+UniqueIdentifierSynthesizing.swift similarity index 77% rename from ios/Temp/NSObject+UniqueIdentifierSynthesizing.swift rename to ios/Temp/UIViewController+UniqueIdentifierSynthesizing.swift index 1524b665..aadaeac7 100644 --- a/ios/Temp/NSObject+UniqueIdentifierSynthesizing.swift +++ b/ios/Temp/UIViewController+UniqueIdentifierSynthesizing.swift @@ -9,6 +9,6 @@ import Foundation import DGSwiftUtilities -extension NSObject: UniqueIdentifierSynthesizing { +extension UIViewController: UniqueIdentifierSynthesizing { // empty requirements };