From 23fb93055c704b64b249cd505a73e3a413ed0d27 Mon Sep 17 00:00:00 2001 From: Alan Maynard Date: Wed, 17 Apr 2019 18:50:49 -0400 Subject: [PATCH] SWF-17 Added basic details for utilization trends --- .../Base.lproj/Interface.storyboard | 6 +++++- .../UtilizationTrendInterfaceController.swift | 3 +++ 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/SynchronyFinancial/SynchronyFinancial WatchKit App/Base.lproj/Interface.storyboard b/SynchronyFinancial/SynchronyFinancial WatchKit App/Base.lproj/Interface.storyboard index 746560d..b85f5b3 100644 --- a/SynchronyFinancial/SynchronyFinancial WatchKit App/Base.lproj/Interface.storyboard +++ b/SynchronyFinancial/SynchronyFinancial WatchKit App/Base.lproj/Interface.storyboard @@ -88,7 +88,11 @@ - diff --git a/SynchronyFinancial/SynchronyFinancial WatchKit Extension/UtilizationTrendInterfaceController.swift b/SynchronyFinancial/SynchronyFinancial WatchKit Extension/UtilizationTrendInterfaceController.swift index c2e90b3..cce82ce 100644 --- a/SynchronyFinancial/SynchronyFinancial WatchKit Extension/UtilizationTrendInterfaceController.swift +++ b/SynchronyFinancial/SynchronyFinancial WatchKit Extension/UtilizationTrendInterfaceController.swift @@ -53,4 +53,7 @@ class UtilizationTrendInterfaceController: WKInterfaceController { } } + @IBAction func showDetails() { + presentAlert(withTitle: "Trends", message: "Lowering your utilization over time can help reduce the amount of interest accrued on your accounts.", preferredStyle: .alert, actions: [WKAlertAction(title: "Done", style: .default, handler: {})]) + } }