diff --git a/ios/Temp/UniqueIdentifierSynthesizing.swift b/ios/Temp/UniqueIdentifierSynthesizing.swift index fbc9d7dd..f5e9dc9b 100644 --- a/ios/Temp/UniqueIdentifierSynthesizing.swift +++ b/ios/Temp/UniqueIdentifierSynthesizing.swift @@ -10,7 +10,7 @@ import DGSwiftUtilities public protocol UniqueIdentifierSynthesizing: AnyObject { - + var synthesizedIntID: UInt64 { get }; var synthesizedUUID: UUID { get }; @@ -19,6 +19,13 @@ public protocol UniqueIdentifierSynthesizing: AnyObject { // MARK: - UniqueIdentifierSynthesizing+Helpers // -------------------------------------------- +public extension UniqueIdentifierSynthesizing { + + var rawMemoryAddressAsString: String { + String(describing: Unmanaged.passUnretained(self).toOpaque()); + }; +}; + public extension UniqueIdentifierSynthesizing where Self: NSObject { var synthesizedStringID: String {