Popup from Apple Music & Feedback in AppStore. Contains Done
, Heart
, Error
and other. Supports Dark Mode.
I tried to recreate Apple's alerts as much as possible. You can find these alerts in the AppStore after feedback and after you add a song to your library in Apple Music.
For run alert just call this:
AlertKitAPI.present(
title: "Added to Library",
icon: .done,
style: .iOS17AppleMusic,
haptic: .success
)
Available 2 styles:
public enum AlertViewStyle {
case iOS16AppleMusic
case iOS17AppleMusic
}
Ready to use on iOS 13+.
In Xcode go to Project -> Your Project Name -> Package Dependencies
-> Tap Plus. Insert url:
https://github.com/sparrowcode/AlertKit
or adding it to the dependencies
of your Package.swift
:
dependencies: [
.package(url: "https://github.com/sparrowcode/AlertKit", .upToNextMajor(from: "5.0.0"))
]
This is an outdated way of doing things. I advise you to use SPM. However, I will continue to support Cocoapods for some time.
Cocoapods Instalation
CocoaPods is a dependency manager. For usage and installation instructions, visit their website. To integrate using CocoaPods, specify it in your Podfile
:
pod 'SPAlert'
If you prefer not to use any of dependency managers, you can integrate manually. Put Sources/AlertKit
folder in your Xcode project. Make sure to enable Copy items if needed
and Create groups
.
If you use a AlertKit
, add your app via Pull Request.