From 1617127ca36d5d39d734c851d8734fc50c3236af Mon Sep 17 00:00:00 2001 From: saba khitaridze Date: Wed, 8 Feb 2023 03:44:36 +0400 Subject: [PATCH 1/3] removed comment --- .../xcshareddata/swiftpm/Package.resolved | 32 ++++++++ .../xcschemes/Workout_App.xcscheme | 78 +++++++++++++++++++ .../WeekDayHeaderView/WeekDayHeaderView.swift | 2 - 3 files changed, 110 insertions(+), 2 deletions(-) create mode 100644 Workout_App.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved create mode 100644 Workout_App.xcodeproj/xcshareddata/xcschemes/Workout_App.xcscheme diff --git a/Workout_App.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved b/Workout_App.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved new file mode 100644 index 0000000..7c791fd --- /dev/null +++ b/Workout_App.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved @@ -0,0 +1,32 @@ +{ + "pins" : [ + { + "identity" : "lottie-ios", + "kind" : "remoteSourceControl", + "location" : "https://github.com/airbnb/lottie-ios.git", + "state" : { + "revision" : "314537ec697719fa33a9d48210f4d06a463286d3", + "version" : "3.4.3" + } + }, + { + "identity" : "sdwebimage", + "kind" : "remoteSourceControl", + "location" : "https://github.com/SDWebImage/SDWebImage", + "state" : { + "revision" : "3e48cb68d8e668d146dc59c73fb98cb628616236", + "version" : "5.13.2" + } + }, + { + "identity" : "sdwebimagesvgcoder", + "kind" : "remoteSourceControl", + "location" : "https://github.com/SDWebImage/SDWebImageSVGCoder", + "state" : { + "revision" : "afbe025cbdae37c20c144956fbabc07ddd5c0fc2", + "version" : "1.6.1" + } + } + ], + "version" : 2 +} diff --git a/Workout_App.xcodeproj/xcshareddata/xcschemes/Workout_App.xcscheme b/Workout_App.xcodeproj/xcshareddata/xcschemes/Workout_App.xcscheme new file mode 100644 index 0000000..386b430 --- /dev/null +++ b/Workout_App.xcodeproj/xcshareddata/xcschemes/Workout_App.xcscheme @@ -0,0 +1,78 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Workout_App/CustomView/WeekDayHeaderView/WeekDayHeaderView.swift b/Workout_App/CustomView/WeekDayHeaderView/WeekDayHeaderView.swift index 8f6572d..d1343a6 100644 --- a/Workout_App/CustomView/WeekDayHeaderView/WeekDayHeaderView.swift +++ b/Workout_App/CustomView/WeekDayHeaderView/WeekDayHeaderView.swift @@ -11,8 +11,6 @@ protocol updateHeaderDataProtocol: AnyObject { func getScheduledTime() } -//Working to redesign missed workouts appearing logic - final class WeekDayHeaderView: UIView { //MARK: - IBOutlets From 2d01fcf1f4327401a9d9514c8b84916d437924e5 Mon Sep 17 00:00:00 2001 From: saba khitaridze Date: Wed, 8 Feb 2023 03:51:33 +0400 Subject: [PATCH 2/3] added AnyObject for activity protocol --- Workout_App/Manager/ActivityIndicatorManager.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Workout_App/Manager/ActivityIndicatorManager.swift b/Workout_App/Manager/ActivityIndicatorManager.swift index 9f42284..cde96af 100644 --- a/Workout_App/Manager/ActivityIndicatorManager.swift +++ b/Workout_App/Manager/ActivityIndicatorManager.swift @@ -7,7 +7,7 @@ import UIKit -protocol activityIndicatorLogic { +protocol activityIndicatorLogic: AnyObject { func startAnimating() func stopAnimating() } From 5da749cd7e88d5f6a33c25460a639fc7aae40077 Mon Sep 17 00:00:00 2001 From: saba khitaridze Date: Wed, 8 Feb 2023 03:58:13 +0400 Subject: [PATCH 3/3] removed notificationManager instance in AppDelegate --- Workout_App/App/AppDelegate.swift | 1 - 1 file changed, 1 deletion(-) diff --git a/Workout_App/App/AppDelegate.swift b/Workout_App/App/AppDelegate.swift index 8e45bda..f6bbb0a 100644 --- a/Workout_App/App/AppDelegate.swift +++ b/Workout_App/App/AppDelegate.swift @@ -14,7 +14,6 @@ class AppDelegate: UIResponder, UIApplicationDelegate { //MARK: - Properties let SVGCoder = SDImageSVGCoder.shared - let notificationManager = NotificationManager() //MARK: - Methods func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {