From 39c9eeb54ec814f29bf6e4a0c5dcbc5a7c4d763c Mon Sep 17 00:00:00 2001 From: Jonathan Backer Date: Fri, 22 Sep 2023 09:16:30 -0700 Subject: [PATCH] Updated TM SDK to 1.2.1 (Tickets 3.2.1), added important note about TMTickets.shared.start() --- TicketsSDKDemoIntegration.xcodeproj/project.pbxproj | 2 +- TicketsSDKDemoIntegration/EmbeddedViewController.swift | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/TicketsSDKDemoIntegration.xcodeproj/project.pbxproj b/TicketsSDKDemoIntegration.xcodeproj/project.pbxproj index 4bf7eac..8fa377f 100644 --- a/TicketsSDKDemoIntegration.xcodeproj/project.pbxproj +++ b/TicketsSDKDemoIntegration.xcodeproj/project.pbxproj @@ -455,7 +455,7 @@ repositoryURL = "https://github.com/ticketmaster/iOS-TicketmasterSDK.git"; requirement = { kind = exactVersion; - version = 1.2.0; + version = 1.2.1; }; }; /* End XCRemoteSwiftPackageReference section */ diff --git a/TicketsSDKDemoIntegration/EmbeddedViewController.swift b/TicketsSDKDemoIntegration/EmbeddedViewController.swift index 1a61a2a..7fa1688 100644 --- a/TicketsSDKDemoIntegration/EmbeddedViewController.swift +++ b/TicketsSDKDemoIntegration/EmbeddedViewController.swift @@ -61,6 +61,8 @@ class EmbeddedViewController: UIViewController { // tell Tickets SDK to use the provided TMTicketsView // - you do not need to call this method when using TMTicketsViewController // - see MainMenuVC+TableViewDleegate.swift + // + // IMPORTANT: Make sure to call this method AFTER or INSIDE TMTickets.shared.configure { ... } TMTickets.shared.start(ticketsView: tView) } }