Music_Player3/MusicPlayer/AppDelegate.swift
Mr.zhou 96147c5e37 项目:Musicoo
版本:A面 1.0
构建:1.1
更新内容:对项目A面功能的实现,经测试确定各项功能无问题。
更新时间:2024年4月12日 11:20
上传状态:已上传App Connect
2024-04-12 11:19:58 +08:00

118 lines
4.7 KiB
Swift

//
// AppDelegate.swift
// MusicPlayer
//
// Created by aaa on 2024/3/25.
//
import UIKit
import CoreData
import AVFoundation
@_exported import IQKeyboardManagerSwift
@UIApplicationMain
class AppDelegate: UIResponder, UIApplicationDelegate {
var window: UIWindow?
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.")
}
}
setAudioSupport()
IQKeyboardManager.shared.enable = true
IQKeyboardManager.shared.shouldResignOnTouchOutside = true
window = UIWindow(frame: UIScreen.main.bounds)
window?.backgroundColor = .init(hex: "#161616")
switch_lunch()
return true
}
//
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 = 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 = MPTabBarController()
//
let transtition = CATransition()
transtition.duration = 0.8
transtition.timingFunction = .init(name: .easeOut)//
window?.layer.add(transtition, forKey: "aSide.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)