From a46db2e6e0c2b861fa5752260816d688cccedc22 Mon Sep 17 00:00:00 2001 From: MinjaeLee <2alswo7@khu.ac.kr> Date: Sun, 2 Jan 2022 18:11:36 +0900 Subject: [PATCH] =?UTF-8?q?[FEAT]=20#287=20-=20NVActivityIndicatorView=20?= =?UTF-8?q?=EC=98=A4=ED=94=88=EC=86=8C=EC=8A=A4=20=EB=9D=BC=EC=9D=B4?= =?UTF-8?q?=EB=B8=8C=EB=9F=AC=EB=A6=AC=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- NADA-iOS-forRelease/Resouces/Constants/URL.swift | 1 + .../ViewControllers/OpenSource/OpenSourceViewController.swift | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/NADA-iOS-forRelease/Resouces/Constants/URL.swift b/NADA-iOS-forRelease/Resouces/Constants/URL.swift index 006758aa..71376cbb 100644 --- a/NADA-iOS-forRelease/Resouces/Constants/URL.swift +++ b/NADA-iOS-forRelease/Resouces/Constants/URL.swift @@ -19,5 +19,6 @@ extension Const { static let kakaoURL = "https://developers.kakao.com/sdk/reference/ios/release/KakaoSDKCommon/index.html" static let keyboardURL = "https://github.com/hackiftekhar/IQKeyboardManager" static let kingfisherURL = "https://github.com/onevcat/Kingfisher" + static let indicatorURL = "https://github.com/ninjaprox/NVActivityIndicatorView" } } diff --git a/NADA-iOS-forRelease/Sources/ViewControllers/OpenSource/OpenSourceViewController.swift b/NADA-iOS-forRelease/Sources/ViewControllers/OpenSource/OpenSourceViewController.swift index a6c94c2b..46fbb30b 100644 --- a/NADA-iOS-forRelease/Sources/ViewControllers/OpenSource/OpenSourceViewController.swift +++ b/NADA-iOS-forRelease/Sources/ViewControllers/OpenSource/OpenSourceViewController.swift @@ -10,7 +10,7 @@ import UIKit class OpenSourceViewController: UIViewController { // MARK: - Properteis - var openSourceList = ["Moya", "SkeletonView", "SwiftLint", "VerticalCardSwiper", "KakaoSDK", "IQKeyboardManagerSwift", "Kingfisher"] + var openSourceList = ["Moya", "SkeletonView", "SwiftLint", "VerticalCardSwiper", "KakaoSDK", "IQKeyboardManagerSwift", "Kingfisher", "NVActivityIndicatorView"] // MARK: - @IBOutlet Properties @IBOutlet weak var openSourceTableView: UITableView! @@ -68,6 +68,7 @@ extension OpenSourceViewController: UITableViewDelegate { case 4: openURL(link: URL(string: Const.URL.kakaoURL)!) case 5: openURL(link: URL(string: Const.URL.keyboardURL)!) case 6: openURL(link: URL(string: Const.URL.kingfisherURL)!) + case 7: openURL(link: URL(string: Const.URL.indicatorURL)!) default: print("default!") }