diff --git a/Package.swift b/Package.swift index ce6db495..7f365176 100644 --- a/Package.swift +++ b/Package.swift @@ -23,9 +23,16 @@ let package = Package( // Targets can depend on other targets in this package, and on products in packages which this package depends on. .target( name: "VGSShowSDK", - dependencies: []), + dependencies: [], + exclude: [ + "Info.plist", + "VGSShowSDK.h" + ]), .testTarget( name: "VGSShowSDKTests", - dependencies: ["VGSShowSDK"]) + dependencies: ["VGSShowSDK"], + exclude: [ + "Info.plist" + ]) ] ) diff --git a/Sources/VGSShowSDK/Core/Analytics/VGSAnalyticsClient.swift b/Sources/VGSShowSDK/Core/Analytics/VGSAnalyticsClient.swift index 11e58044..0e193b93 100644 --- a/Sources/VGSShowSDK/Core/Analytics/VGSAnalyticsClient.swift +++ b/Sources/VGSShowSDK/Core/Analytics/VGSAnalyticsClient.swift @@ -115,13 +115,11 @@ public class VGSAnalyticsClient { private static var sdkIntegration: String { #if COCOAPODS return "COCOAPODS" - #endif - - #if SWIFT_PACKAGE - return "SPM" - #endif - - return "OTHER" + #elseif SWIFT_PACKAGE + return "SPM" + #else + return "OTHER" + #endif } } diff --git a/Sources/VGSShowSDK/UIElements/VGSLabel/VGSLabelDelegate.swift b/Sources/VGSShowSDK/UIElements/VGSLabel/VGSLabelDelegate.swift index 82b2623b..f89fcd23 100644 --- a/Sources/VGSShowSDK/UIElements/VGSLabel/VGSLabelDelegate.swift +++ b/Sources/VGSShowSDK/UIElements/VGSLabel/VGSLabelDelegate.swift @@ -12,7 +12,7 @@ import UIKit /// Delegate methods produced by `VGSLabel`. @objc -public protocol VGSLabelDelegate: class { +public protocol VGSLabelDelegate { /// Tells the delegate when text changes in the specified label. /// - Parameter label: `VGSLabel` view in which text was changed. diff --git a/Sources/VGSShowSDK/UIElements/VGSPDFView/VGSPDFViewDelegate.swift b/Sources/VGSShowSDK/UIElements/VGSPDFView/VGSPDFViewDelegate.swift index 8893550e..feff7e5c 100644 --- a/Sources/VGSShowSDK/UIElements/VGSPDFView/VGSPDFViewDelegate.swift +++ b/Sources/VGSShowSDK/UIElements/VGSPDFView/VGSPDFViewDelegate.swift @@ -8,7 +8,7 @@ import Foundation /// Delegate methods produced by `VGSPDFView`. @available(iOS 11.0, *) @objc -public protocol VGSPDFViewDelegate: class { +public protocol VGSPDFViewDelegate { /// Tells the delegate the document was displayed in view. /// - Parameter pdfView: `VGSPDFView` view in which document was changed. diff --git a/Sources/VGSShowSDK/Utils/Helpers/VGSUtils.swift b/Sources/VGSShowSDK/Utils/Helpers/VGSUtils.swift index fdbd721a..7587b095 100644 --- a/Sources/VGSShowSDK/Utils/Helpers/VGSUtils.swift +++ b/Sources/VGSShowSDK/Utils/Helpers/VGSUtils.swift @@ -22,5 +22,5 @@ internal class Utils { /// VGS Show SDK Version. /// Necessary since SPM doesn't track info plist correctly: https://forums.swift.org/t/add-info-plist-on-spm-bundle/40274/5 - static let vgsShowVersion = "1.1.0" + static let vgsShowVersion = "1.1.1" } diff --git a/VGSShowDemoApp/VGSShowDemoApp/Controllers/UseCases/ShowCard/ShowDemoViewController.swift b/VGSShowDemoApp/VGSShowDemoApp/Controllers/UseCases/ShowCard/ShowDemoViewController.swift index fab299f2..845bb3f1 100644 --- a/VGSShowDemoApp/VGSShowDemoApp/Controllers/UseCases/ShowCard/ShowDemoViewController.swift +++ b/VGSShowDemoApp/VGSShowDemoApp/Controllers/UseCases/ShowCard/ShowDemoViewController.swift @@ -151,7 +151,7 @@ class ShowDemoViewController: UIViewController { print("vgsshow success, code: \(code)") case .failure(let code, let error): self.showButton.isEnabled = true - print("vgsshow failed, code: \(code), error: \(error)") + print("vgsshow failed, code: \(code), error: \(String(describing: error))") } } } diff --git a/VGSShowDemoApp/VGSShowDemoApp/Controllers/UseCases/ShowPDF/ShowDemoPDFViewController.swift b/VGSShowDemoApp/VGSShowDemoApp/Controllers/UseCases/ShowPDF/ShowDemoPDFViewController.swift index 48cd6433..2956e327 100644 --- a/VGSShowDemoApp/VGSShowDemoApp/Controllers/UseCases/ShowPDF/ShowDemoPDFViewController.swift +++ b/VGSShowDemoApp/VGSShowDemoApp/Controllers/UseCases/ShowPDF/ShowDemoPDFViewController.swift @@ -105,9 +105,10 @@ class ShowDemoPDFViewController: UIViewController { switch result { case .success(let code): self?.revealButton.isEnabled = true + print("vgsshow success, code: \(code)") case .failure(let code, let error): self?.revealButton.isEnabled = true - print("vgsshow failed, code: \(code), error: \(error)") + print("vgsshow failed, code: \(code), error: \(String(describing: error))") } } } @@ -125,6 +126,6 @@ extension ShowDemoPDFViewController: VGSPDFViewDelegate { } func pdfView(_ pdfView: VGSPDFView, didFailWithError error: VGSShowError) { - print(error.localizedDescription ?? "uknown error") + print(error.localizedDescription ) } } diff --git a/VGSShowSDK.podspec b/VGSShowSDK.podspec index 85d9aad8..4bf5fe86 100644 --- a/VGSShowSDK.podspec +++ b/VGSShowSDK.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |spec| spec.name = "VGSShowSDK" - spec.version = "1.1.0" + spec.version = "1.1.1" spec.summary = "VGS Show - is a product suite that allows customers to reveal and show information securely without possession of it." spec.swift_version = '5.0' spec.description = <<-DESC diff --git a/VGSShowSDK.xcodeproj/project.pbxproj b/VGSShowSDK.xcodeproj/project.pbxproj index 3c6029c2..f43a103f 100644 --- a/VGSShowSDK.xcodeproj/project.pbxproj +++ b/VGSShowSDK.xcodeproj/project.pbxproj @@ -1049,7 +1049,7 @@ "@executable_path/Frameworks", "@loader_path/Frameworks", ); - MARKETING_VERSION = 1.1.0; + MARKETING_VERSION = 1.1.1; PRODUCT_BUNDLE_IDENTIFIER = com.vgs.framework.VGSShowsSDK; PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; SKIP_INSTALL = YES; @@ -1080,7 +1080,7 @@ "@executable_path/Frameworks", "@loader_path/Frameworks", ); - MARKETING_VERSION = 1.1.0; + MARKETING_VERSION = 1.1.1; PRODUCT_BUNDLE_IDENTIFIER = com.vgs.framework.VGSShowsSDK; PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; SKIP_INSTALL = YES; diff --git a/docs/Classes.html b/docs/Classes.html index 9f87a399..02acdf08 100644 --- a/docs/Classes.html +++ b/docs/Classes.html @@ -328,7 +328,7 @@

Declaration

diff --git a/docs/Classes/VGSLabel.html b/docs/Classes/VGSLabel.html index ec401960..b1f08c78 100644 --- a/docs/Classes/VGSLabel.html +++ b/docs/Classes/VGSLabel.html @@ -1123,7 +1123,7 @@

Declaration

diff --git a/docs/Classes/VGSLabel/CopyTextFormat.html b/docs/Classes/VGSLabel/CopyTextFormat.html index 4d6067a2..ca2f6bf5 100644 --- a/docs/Classes/VGSLabel/CopyTextFormat.html +++ b/docs/Classes/VGSLabel/CopyTextFormat.html @@ -241,7 +241,7 @@

Declaration

diff --git a/docs/Classes/VGSLogger.html b/docs/Classes/VGSLogger.html index 1f49446c..01f247e7 100644 --- a/docs/Classes/VGSLogger.html +++ b/docs/Classes/VGSLogger.html @@ -294,7 +294,7 @@

Declaration

diff --git a/docs/Classes/VGSPDFView.html b/docs/Classes/VGSPDFView.html index 926b482f..1f1bb3ab 100644 --- a/docs/Classes/VGSPDFView.html +++ b/docs/Classes/VGSPDFView.html @@ -460,7 +460,7 @@

Declaration

diff --git a/docs/Classes/VGSShow.html b/docs/Classes/VGSShow.html index 0ad3cd17..5b5fd816 100644 --- a/docs/Classes/VGSShow.html +++ b/docs/Classes/VGSShow.html @@ -684,7 +684,7 @@

Declaration

diff --git a/docs/Classes/VGSShowError.html b/docs/Classes/VGSShowError.html index 8d7ca9c7..a15021e0 100644 --- a/docs/Classes/VGSShowError.html +++ b/docs/Classes/VGSShowError.html @@ -240,7 +240,7 @@

Declaration

diff --git a/docs/Enums.html b/docs/Enums.html index 77cd0476..1d66652f 100644 --- a/docs/Enums.html +++ b/docs/Enums.html @@ -326,7 +326,7 @@

Declaration

diff --git a/docs/Enums/VGSEnvironment.html b/docs/Enums/VGSEnvironment.html index a3c649a6..52ab51e8 100644 --- a/docs/Enums/VGSEnvironment.html +++ b/docs/Enums/VGSEnvironment.html @@ -240,7 +240,7 @@

Declaration

diff --git a/docs/Enums/VGSErrorType.html b/docs/Enums/VGSErrorType.html index 2708c62a..19cb0377 100644 --- a/docs/Enums/VGSErrorType.html +++ b/docs/Enums/VGSErrorType.html @@ -420,7 +420,7 @@

Declaration

diff --git a/docs/Enums/VGSHTTPMethod.html b/docs/Enums/VGSHTTPMethod.html index 3466b1aa..2cd15cb8 100644 --- a/docs/Enums/VGSHTTPMethod.html +++ b/docs/Enums/VGSHTTPMethod.html @@ -330,7 +330,7 @@

Declaration

diff --git a/docs/Enums/VGSLogLevel.html b/docs/Enums/VGSLogLevel.html index e17944ee..a73b3008 100644 --- a/docs/Enums/VGSLogLevel.html +++ b/docs/Enums/VGSLogLevel.html @@ -270,7 +270,7 @@

Declaration

diff --git a/docs/Enums/VGSShowRequestResult.html b/docs/Enums/VGSShowRequestResult.html index 3e04c10f..c491d5c4 100644 --- a/docs/Enums/VGSShowRequestResult.html +++ b/docs/Enums/VGSShowRequestResult.html @@ -250,7 +250,7 @@

Declaration

diff --git a/docs/Global Variables.html b/docs/Global Variables.html index e5843b90..fbd9fe21 100644 --- a/docs/Global Variables.html +++ b/docs/Global Variables.html @@ -200,7 +200,7 @@

Declaration

diff --git a/docs/Protocols.html b/docs/Protocols.html index 3d106426..ccd1d580 100644 --- a/docs/Protocols.html +++ b/docs/Protocols.html @@ -184,7 +184,7 @@

Declaration

Swift

@objc
-public protocol VGSLabelDelegate : AnyObject
+public protocol VGSLabelDelegate
@@ -217,7 +217,7 @@

Declaration

Swift

@available(iOS 11.0, *)
 @objc
-public protocol VGSPDFViewDelegate : AnyObject
+public protocol VGSPDFViewDelegate @@ -266,7 +266,7 @@

Declaration

diff --git a/docs/Protocols/VGSLabelDelegate.html b/docs/Protocols/VGSLabelDelegate.html index 92b132bc..6c12e445 100644 --- a/docs/Protocols/VGSLabelDelegate.html +++ b/docs/Protocols/VGSLabelDelegate.html @@ -157,7 +157,7 @@

VGSLabelDelegate

@objc
-public protocol VGSLabelDelegate : AnyObject
+public protocol VGSLabelDelegate
@@ -355,7 +355,7 @@

Parameters

diff --git a/docs/Protocols/VGSPDFViewDelegate.html b/docs/Protocols/VGSPDFViewDelegate.html index 37679dfd..925c0db7 100644 --- a/docs/Protocols/VGSPDFViewDelegate.html +++ b/docs/Protocols/VGSPDFViewDelegate.html @@ -158,7 +158,7 @@

VGSPDFViewDelegate

@available(iOS 11.0, *)
 @objc
-public protocol VGSPDFViewDelegate : AnyObject
+public protocol VGSPDFViewDelegate @@ -296,7 +296,7 @@

Parameters

diff --git a/docs/Protocols/VGSViewProtocol.html b/docs/Protocols/VGSViewProtocol.html index 128e49bc..b1b9b3da 100644 --- a/docs/Protocols/VGSViewProtocol.html +++ b/docs/Protocols/VGSViewProtocol.html @@ -210,7 +210,7 @@

Declaration

diff --git a/docs/Structs.html b/docs/Structs.html index f88d8acb..a9b18826 100644 --- a/docs/Structs.html +++ b/docs/Structs.html @@ -294,7 +294,7 @@

Declaration

diff --git a/docs/Structs/VGSLoggingConfiguration.html b/docs/Structs/VGSLoggingConfiguration.html index 0143d4ca..339a0ae9 100644 --- a/docs/Structs/VGSLoggingConfiguration.html +++ b/docs/Structs/VGSLoggingConfiguration.html @@ -270,7 +270,7 @@

Declaration

diff --git a/docs/Structs/VGSPlaceholderLabelStyle.html b/docs/Structs/VGSPlaceholderLabelStyle.html index e5f5ddc7..599a746a 100644 --- a/docs/Structs/VGSPlaceholderLabelStyle.html +++ b/docs/Structs/VGSPlaceholderLabelStyle.html @@ -390,7 +390,7 @@

Declaration

diff --git a/docs/Structs/VGSShowRequestOptions.html b/docs/Structs/VGSShowRequestOptions.html index dcd2d204..3369ee45 100644 --- a/docs/Structs/VGSShowRequestOptions.html +++ b/docs/Structs/VGSShowRequestOptions.html @@ -210,7 +210,7 @@

Declaration

diff --git a/docs/Structs/VGSTextRange.html b/docs/Structs/VGSTextRange.html index a2ae31cd..691b6540 100644 --- a/docs/Structs/VGSTextRange.html +++ b/docs/Structs/VGSTextRange.html @@ -301,7 +301,7 @@

Parameters

diff --git a/docs/Typealiases.html b/docs/Typealiases.html index 9054bb8b..6e1a6ac0 100644 --- a/docs/Typealiases.html +++ b/docs/Typealiases.html @@ -260,7 +260,7 @@

Declaration

diff --git a/docs/docsets/VGSShowSDK.docset/Contents/Resources/Documents/Classes.html b/docs/docsets/VGSShowSDK.docset/Contents/Resources/Documents/Classes.html index 9f87a399..02acdf08 100644 --- a/docs/docsets/VGSShowSDK.docset/Contents/Resources/Documents/Classes.html +++ b/docs/docsets/VGSShowSDK.docset/Contents/Resources/Documents/Classes.html @@ -328,7 +328,7 @@

Declaration

diff --git a/docs/docsets/VGSShowSDK.docset/Contents/Resources/Documents/Classes/VGSLabel.html b/docs/docsets/VGSShowSDK.docset/Contents/Resources/Documents/Classes/VGSLabel.html index ec401960..b1f08c78 100644 --- a/docs/docsets/VGSShowSDK.docset/Contents/Resources/Documents/Classes/VGSLabel.html +++ b/docs/docsets/VGSShowSDK.docset/Contents/Resources/Documents/Classes/VGSLabel.html @@ -1123,7 +1123,7 @@

Declaration

diff --git a/docs/docsets/VGSShowSDK.docset/Contents/Resources/Documents/Classes/VGSLabel/CopyTextFormat.html b/docs/docsets/VGSShowSDK.docset/Contents/Resources/Documents/Classes/VGSLabel/CopyTextFormat.html index 4d6067a2..ca2f6bf5 100644 --- a/docs/docsets/VGSShowSDK.docset/Contents/Resources/Documents/Classes/VGSLabel/CopyTextFormat.html +++ b/docs/docsets/VGSShowSDK.docset/Contents/Resources/Documents/Classes/VGSLabel/CopyTextFormat.html @@ -241,7 +241,7 @@

Declaration

diff --git a/docs/docsets/VGSShowSDK.docset/Contents/Resources/Documents/Classes/VGSLogger.html b/docs/docsets/VGSShowSDK.docset/Contents/Resources/Documents/Classes/VGSLogger.html index 1f49446c..01f247e7 100644 --- a/docs/docsets/VGSShowSDK.docset/Contents/Resources/Documents/Classes/VGSLogger.html +++ b/docs/docsets/VGSShowSDK.docset/Contents/Resources/Documents/Classes/VGSLogger.html @@ -294,7 +294,7 @@

Declaration

diff --git a/docs/docsets/VGSShowSDK.docset/Contents/Resources/Documents/Classes/VGSPDFView.html b/docs/docsets/VGSShowSDK.docset/Contents/Resources/Documents/Classes/VGSPDFView.html index 926b482f..1f1bb3ab 100644 --- a/docs/docsets/VGSShowSDK.docset/Contents/Resources/Documents/Classes/VGSPDFView.html +++ b/docs/docsets/VGSShowSDK.docset/Contents/Resources/Documents/Classes/VGSPDFView.html @@ -460,7 +460,7 @@

Declaration

diff --git a/docs/docsets/VGSShowSDK.docset/Contents/Resources/Documents/Classes/VGSShow.html b/docs/docsets/VGSShowSDK.docset/Contents/Resources/Documents/Classes/VGSShow.html index 0ad3cd17..5b5fd816 100644 --- a/docs/docsets/VGSShowSDK.docset/Contents/Resources/Documents/Classes/VGSShow.html +++ b/docs/docsets/VGSShowSDK.docset/Contents/Resources/Documents/Classes/VGSShow.html @@ -684,7 +684,7 @@

Declaration

diff --git a/docs/docsets/VGSShowSDK.docset/Contents/Resources/Documents/Classes/VGSShowError.html b/docs/docsets/VGSShowSDK.docset/Contents/Resources/Documents/Classes/VGSShowError.html index 8d7ca9c7..a15021e0 100644 --- a/docs/docsets/VGSShowSDK.docset/Contents/Resources/Documents/Classes/VGSShowError.html +++ b/docs/docsets/VGSShowSDK.docset/Contents/Resources/Documents/Classes/VGSShowError.html @@ -240,7 +240,7 @@

Declaration

diff --git a/docs/docsets/VGSShowSDK.docset/Contents/Resources/Documents/Enums.html b/docs/docsets/VGSShowSDK.docset/Contents/Resources/Documents/Enums.html index 77cd0476..1d66652f 100644 --- a/docs/docsets/VGSShowSDK.docset/Contents/Resources/Documents/Enums.html +++ b/docs/docsets/VGSShowSDK.docset/Contents/Resources/Documents/Enums.html @@ -326,7 +326,7 @@

Declaration

diff --git a/docs/docsets/VGSShowSDK.docset/Contents/Resources/Documents/Enums/VGSEnvironment.html b/docs/docsets/VGSShowSDK.docset/Contents/Resources/Documents/Enums/VGSEnvironment.html index a3c649a6..52ab51e8 100644 --- a/docs/docsets/VGSShowSDK.docset/Contents/Resources/Documents/Enums/VGSEnvironment.html +++ b/docs/docsets/VGSShowSDK.docset/Contents/Resources/Documents/Enums/VGSEnvironment.html @@ -240,7 +240,7 @@

Declaration

diff --git a/docs/docsets/VGSShowSDK.docset/Contents/Resources/Documents/Enums/VGSErrorType.html b/docs/docsets/VGSShowSDK.docset/Contents/Resources/Documents/Enums/VGSErrorType.html index 2708c62a..19cb0377 100644 --- a/docs/docsets/VGSShowSDK.docset/Contents/Resources/Documents/Enums/VGSErrorType.html +++ b/docs/docsets/VGSShowSDK.docset/Contents/Resources/Documents/Enums/VGSErrorType.html @@ -420,7 +420,7 @@

Declaration

diff --git a/docs/docsets/VGSShowSDK.docset/Contents/Resources/Documents/Enums/VGSHTTPMethod.html b/docs/docsets/VGSShowSDK.docset/Contents/Resources/Documents/Enums/VGSHTTPMethod.html index 3466b1aa..2cd15cb8 100644 --- a/docs/docsets/VGSShowSDK.docset/Contents/Resources/Documents/Enums/VGSHTTPMethod.html +++ b/docs/docsets/VGSShowSDK.docset/Contents/Resources/Documents/Enums/VGSHTTPMethod.html @@ -330,7 +330,7 @@

Declaration

diff --git a/docs/docsets/VGSShowSDK.docset/Contents/Resources/Documents/Enums/VGSLogLevel.html b/docs/docsets/VGSShowSDK.docset/Contents/Resources/Documents/Enums/VGSLogLevel.html index e17944ee..a73b3008 100644 --- a/docs/docsets/VGSShowSDK.docset/Contents/Resources/Documents/Enums/VGSLogLevel.html +++ b/docs/docsets/VGSShowSDK.docset/Contents/Resources/Documents/Enums/VGSLogLevel.html @@ -270,7 +270,7 @@

Declaration

diff --git a/docs/docsets/VGSShowSDK.docset/Contents/Resources/Documents/Enums/VGSShowRequestResult.html b/docs/docsets/VGSShowSDK.docset/Contents/Resources/Documents/Enums/VGSShowRequestResult.html index 3e04c10f..c491d5c4 100644 --- a/docs/docsets/VGSShowSDK.docset/Contents/Resources/Documents/Enums/VGSShowRequestResult.html +++ b/docs/docsets/VGSShowSDK.docset/Contents/Resources/Documents/Enums/VGSShowRequestResult.html @@ -250,7 +250,7 @@

Declaration

diff --git a/docs/docsets/VGSShowSDK.docset/Contents/Resources/Documents/Global Variables.html b/docs/docsets/VGSShowSDK.docset/Contents/Resources/Documents/Global Variables.html index e5843b90..fbd9fe21 100644 --- a/docs/docsets/VGSShowSDK.docset/Contents/Resources/Documents/Global Variables.html +++ b/docs/docsets/VGSShowSDK.docset/Contents/Resources/Documents/Global Variables.html @@ -200,7 +200,7 @@

Declaration

diff --git a/docs/docsets/VGSShowSDK.docset/Contents/Resources/Documents/Protocols.html b/docs/docsets/VGSShowSDK.docset/Contents/Resources/Documents/Protocols.html index 3d106426..ccd1d580 100644 --- a/docs/docsets/VGSShowSDK.docset/Contents/Resources/Documents/Protocols.html +++ b/docs/docsets/VGSShowSDK.docset/Contents/Resources/Documents/Protocols.html @@ -184,7 +184,7 @@

Declaration

Swift

@objc
-public protocol VGSLabelDelegate : AnyObject
+public protocol VGSLabelDelegate
@@ -217,7 +217,7 @@

Declaration

Swift

@available(iOS 11.0, *)
 @objc
-public protocol VGSPDFViewDelegate : AnyObject
+public protocol VGSPDFViewDelegate @@ -266,7 +266,7 @@

Declaration

diff --git a/docs/docsets/VGSShowSDK.docset/Contents/Resources/Documents/Protocols/VGSLabelDelegate.html b/docs/docsets/VGSShowSDK.docset/Contents/Resources/Documents/Protocols/VGSLabelDelegate.html index 92b132bc..6c12e445 100644 --- a/docs/docsets/VGSShowSDK.docset/Contents/Resources/Documents/Protocols/VGSLabelDelegate.html +++ b/docs/docsets/VGSShowSDK.docset/Contents/Resources/Documents/Protocols/VGSLabelDelegate.html @@ -157,7 +157,7 @@

VGSLabelDelegate

@objc
-public protocol VGSLabelDelegate : AnyObject
+public protocol VGSLabelDelegate
@@ -355,7 +355,7 @@

Parameters

diff --git a/docs/docsets/VGSShowSDK.docset/Contents/Resources/Documents/Protocols/VGSPDFViewDelegate.html b/docs/docsets/VGSShowSDK.docset/Contents/Resources/Documents/Protocols/VGSPDFViewDelegate.html index 37679dfd..925c0db7 100644 --- a/docs/docsets/VGSShowSDK.docset/Contents/Resources/Documents/Protocols/VGSPDFViewDelegate.html +++ b/docs/docsets/VGSShowSDK.docset/Contents/Resources/Documents/Protocols/VGSPDFViewDelegate.html @@ -158,7 +158,7 @@

VGSPDFViewDelegate

@available(iOS 11.0, *)
 @objc
-public protocol VGSPDFViewDelegate : AnyObject
+public protocol VGSPDFViewDelegate @@ -296,7 +296,7 @@

Parameters

diff --git a/docs/docsets/VGSShowSDK.docset/Contents/Resources/Documents/Protocols/VGSViewProtocol.html b/docs/docsets/VGSShowSDK.docset/Contents/Resources/Documents/Protocols/VGSViewProtocol.html index 128e49bc..b1b9b3da 100644 --- a/docs/docsets/VGSShowSDK.docset/Contents/Resources/Documents/Protocols/VGSViewProtocol.html +++ b/docs/docsets/VGSShowSDK.docset/Contents/Resources/Documents/Protocols/VGSViewProtocol.html @@ -210,7 +210,7 @@

Declaration

diff --git a/docs/docsets/VGSShowSDK.docset/Contents/Resources/Documents/Structs.html b/docs/docsets/VGSShowSDK.docset/Contents/Resources/Documents/Structs.html index f88d8acb..a9b18826 100644 --- a/docs/docsets/VGSShowSDK.docset/Contents/Resources/Documents/Structs.html +++ b/docs/docsets/VGSShowSDK.docset/Contents/Resources/Documents/Structs.html @@ -294,7 +294,7 @@

Declaration

diff --git a/docs/docsets/VGSShowSDK.docset/Contents/Resources/Documents/Structs/VGSLoggingConfiguration.html b/docs/docsets/VGSShowSDK.docset/Contents/Resources/Documents/Structs/VGSLoggingConfiguration.html index 0143d4ca..339a0ae9 100644 --- a/docs/docsets/VGSShowSDK.docset/Contents/Resources/Documents/Structs/VGSLoggingConfiguration.html +++ b/docs/docsets/VGSShowSDK.docset/Contents/Resources/Documents/Structs/VGSLoggingConfiguration.html @@ -270,7 +270,7 @@

Declaration

diff --git a/docs/docsets/VGSShowSDK.docset/Contents/Resources/Documents/Structs/VGSPlaceholderLabelStyle.html b/docs/docsets/VGSShowSDK.docset/Contents/Resources/Documents/Structs/VGSPlaceholderLabelStyle.html index e5f5ddc7..599a746a 100644 --- a/docs/docsets/VGSShowSDK.docset/Contents/Resources/Documents/Structs/VGSPlaceholderLabelStyle.html +++ b/docs/docsets/VGSShowSDK.docset/Contents/Resources/Documents/Structs/VGSPlaceholderLabelStyle.html @@ -390,7 +390,7 @@

Declaration

diff --git a/docs/docsets/VGSShowSDK.docset/Contents/Resources/Documents/Structs/VGSShowRequestOptions.html b/docs/docsets/VGSShowSDK.docset/Contents/Resources/Documents/Structs/VGSShowRequestOptions.html index dcd2d204..3369ee45 100644 --- a/docs/docsets/VGSShowSDK.docset/Contents/Resources/Documents/Structs/VGSShowRequestOptions.html +++ b/docs/docsets/VGSShowSDK.docset/Contents/Resources/Documents/Structs/VGSShowRequestOptions.html @@ -210,7 +210,7 @@

Declaration

diff --git a/docs/docsets/VGSShowSDK.docset/Contents/Resources/Documents/Structs/VGSTextRange.html b/docs/docsets/VGSShowSDK.docset/Contents/Resources/Documents/Structs/VGSTextRange.html index a2ae31cd..691b6540 100644 --- a/docs/docsets/VGSShowSDK.docset/Contents/Resources/Documents/Structs/VGSTextRange.html +++ b/docs/docsets/VGSShowSDK.docset/Contents/Resources/Documents/Structs/VGSTextRange.html @@ -301,7 +301,7 @@

Parameters

diff --git a/docs/docsets/VGSShowSDK.docset/Contents/Resources/Documents/Typealiases.html b/docs/docsets/VGSShowSDK.docset/Contents/Resources/Documents/Typealiases.html index 9054bb8b..6e1a6ac0 100644 --- a/docs/docsets/VGSShowSDK.docset/Contents/Resources/Documents/Typealiases.html +++ b/docs/docsets/VGSShowSDK.docset/Contents/Resources/Documents/Typealiases.html @@ -260,7 +260,7 @@

Declaration

diff --git a/docs/docsets/VGSShowSDK.docset/Contents/Resources/Documents/index.html b/docs/docsets/VGSShowSDK.docset/Contents/Resources/Documents/index.html index b1d6eb69..b5ee8f4a 100644 --- a/docs/docsets/VGSShowSDK.docset/Contents/Resources/Documents/index.html +++ b/docs/docsets/VGSShowSDK.docset/Contents/Resources/Documents/index.html @@ -154,7 +154,8 @@

UT license -swift

+swift +

VGS Show iOS SDK

VGS Show - is a product suite that allows customers to reveal and show information securely without possession of it. VGSShow iOS SDK allows you to securely reveal data from VGS and display it via forms without having to have that data pass through your systems. The form UI Elements behave like traditional labels while securing access to the unsecured data.

@@ -349,7 +350,7 @@

License

diff --git a/docs/docsets/VGSShowSDK.tgz b/docs/docsets/VGSShowSDK.tgz index 9abbf95d..a9a1f2ee 100644 Binary files a/docs/docsets/VGSShowSDK.tgz and b/docs/docsets/VGSShowSDK.tgz differ diff --git a/docs/index.html b/docs/index.html index b1d6eb69..b5ee8f4a 100644 --- a/docs/index.html +++ b/docs/index.html @@ -154,7 +154,8 @@

UT license -swift

+swift +

VGS Show iOS SDK

VGS Show - is a product suite that allows customers to reveal and show information securely without possession of it. VGSShow iOS SDK allows you to securely reveal data from VGS and display it via forms without having to have that data pass through your systems. The form UI Elements behave like traditional labels while securing access to the unsecured data.

@@ -349,7 +350,7 @@

License