Music_Player3/MusicPlayer/AppDelegate.swift
2024-05-31 17:05:17 +08:00

148 lines
6.1 KiB
Swift

//
// AppDelegate.swift
// MusicPlayer
//
// Created by aaa on 2024/3/25.
//
import UIKit
import CoreData
import AVFoundation
import Alamofire
import Tiercel
import FirebaseCore
@_exported import IQKeyboardManagerSwift
@UIApplicationMain
class AppDelegate: UIResponder, UIApplicationDelegate {
var window: UIWindow?
//
var backgroundSessionCompletionHandler: (() -> Void)?
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
//
UNUserNotificationCenter.current()
.requestAuthorization(options: [.alert, .sound, .badge]) {
(accepted, error) in
if !accepted {
print("Users are not allowed to be notified of messages.")
}
}
//FireBase
FirebaseApp.configure()
//
MP_DownloadManager.shared.cancelAllTasksIfNeeded()
setAudioSupport()
MP_NetWorkManager.shared.requestStatusToYouTube()
IQKeyboardManager.shared.enable = true
IQKeyboardManager.shared.shouldResignOnTouchOutside = true
window = UIWindow(frame: UIScreen.main.bounds)
window?.backgroundColor = .init(hex: "#161616")
switch_lunch()
//
MP_AnalyticsManager.shared.user_launchAction()
return true
}
func application(_ application: UIApplication, handleEventsForBackgroundURLSession identifier: String, completionHandler: @escaping () -> Void) {
if identifier == "com.yourApp.backgroundDownload" {
MP_DownloadManager.shared.session = SessionManager("com.yourApp.backgroundDownload", configuration: .init())
MP_DownloadManager.shared.session.completionHandler = completionHandler
}
}
//
private func setAudioSupport(){
//
let session = AVAudioSession.sharedInstance()
do {
//,
try session.setCategory(.playAndRecord, mode: .default)
//
try session.setActive(true)
try session.overrideOutputAudioPort(.speaker)
} catch {
print("Failed to set type:\(error.localizedDescription)")
}
//
UIApplication.shared.beginReceivingRemoteControlEvents()
}
//MARK: -
///
func switch_lunch() {
let lunchVC = MP_LunchViewController()
//
let transtition = CATransition()
transtition.duration = 0.8
transtition.timingFunction = .init(name: .easeOut)//
window?.layer.add(transtition, forKey: "lunch.easeOut")
window?.rootViewController = lunchVC
window?.makeKeyAndVisible()
}
///A
func switch_aSide() {
let tabBarVC = MPSideA_TabBarController()
//
let transtition = CATransition()
transtition.duration = 0.8
transtition.timingFunction = .init(name: .easeOut)//
window?.layer.add(transtition, forKey: "aSide.easeOut")
window?.rootViewController = tabBarVC
window?.makeKeyAndVisible()
}
//b
func switch_positive() {
let tabBarVC = MPPositive_TabBarController()
//
let transtition = CATransition()
transtition.duration = 0.8
transtition.timingFunction = .init(name: .easeOut)//
window?.layer.add(transtition, forKey: "positive.easeOut")
window?.rootViewController = tabBarVC
window?.makeKeyAndVisible()
}
// MARK: - Core Data stack
lazy var persistentContainer: NSPersistentContainer = {
/*
The persistent container for the application. This implementation
creates and returns a container, having loaded the store for the
application to it. This property is optional since there are legitimate
error conditions that could cause the creation of the store to fail.
*/
let container = NSPersistentContainer(name: "MusicPlayer")
container.loadPersistentStores(completionHandler: { (storeDescription, error) in
if let error = error as NSError? {
// Replace this implementation with code to handle the error appropriately.
// fatalError() causes the application to generate a crash log and terminate. You should not use this function in a shipping application, although it may be useful during development.
/*
Typical reasons for an error here include:
* The parent directory does not exist, cannot be created, or disallows writing.
* The persistent store is not accessible, due to permissions or data protection when the device is locked.
* The device is out of space.
* The store could not be migrated to the current model version.
Check the error message to determine what the actual problem was.
*/
fatalError("Unresolved error \(error), \(error.userInfo)")
}
})
return container
}()
// MARK: - Core Data Saving support
func saveContext () {
let context = persistentContainer.viewContext
if context.hasChanges {
do {
try context.save()
} catch {
// Replace this implementation with code to handle the error appropriately.
// fatalError() causes the application to generate a crash log and terminate. You should not use this function in a shipping application, although it may be useful during development.
let nserror = error as NSError
fatalError("Unresolved error \(nserror), \(nserror.userInfo)")
}
}
}
}
///访appDelegate
let accessAppdelegate = ( UIApplication.shared.delegate as! AppDelegate)