app-reviews/App/Sources/AppDelegate.swift
Javier Cicchelli eac34c61c1 [Framework] Feed item filtering in the Feed List view (#11)
This PR contains the work done to implement the filtering of the items shown in the `FeedListViewController` view controller by star rating.

Reviewed-on: #11
Co-authored-by: Javier Cicchelli <javier@rock-n-code.com>
Co-committed-by: Javier Cicchelli <javier@rock-n-code.com>
2024-03-20 21:35:46 +00:00

37 lines
812 B
Swift

//
// AppDelegate.swift
// ReviewsApp
//
// Created by Dmitrii Ivanov on 21/07/2020.
// Copyright © 2020 ING. All rights reserved.
//
import ReviewsFeed
import UIKit
@UIApplicationMain
class AppDelegate: UIResponder {
// MARK: Properties
var window: UIWindow?
}
// MARK: - UIApplicationDelegate
extension AppDelegate: UIApplicationDelegate {
// MARK: Functions
func application(
_ application: UIApplication,
didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?
) -> Bool {
window = UIWindow(frame: UIScreen.main.bounds)
window?.rootViewController = UINavigationController(rootViewController: FeedListViewController())
window?.makeKeyAndVisible()
return true
}
}