TestsTested | ✓ |
LangLanguage | SwiftSwift |
License | Apache 2 |
ReleasedLast Release | Sep 2016 |
SPMSupports SPM | ✓ |
Maintained by Dan Federman, Dan Federman, Dimitris Koutsogiorgas.
SuperDelegate provides a consistent App Delegate API across all iOS SDKs while protecting you from bugs in the application lifecycle.
Consolidate tribal knowledge about and workarounds for eccentricities in the UIApplicationDelegate API contract.
Example: in iOS 8.4, application(_:handleWatchKitExtensionRequest:reply:)
is called before application(_:didFinishLaunchingWithOptions:)
; this is not the case in iOS 8.0-8.3. SuperDelegate protects you against such changes in the API contract.
Create a clean UIApplicationDelegate API that meets your needs.
Example: application(_:didFinishLaunchingWithOptions:)
and application(_:didReceiveRemoteNotification:fetchCompletionHandler:)
will tell you when you receive a push notification (sometimes they tell you twice!), but they don’t differentiate between delivery due to a customer tapping on notification or delivery due to the content-available=1
flag being set in the APNS dictionary. SuperDelegate is designed to give you the information you need when you need it.
To install SuperDelegate in your iOS project with Swift Package Manager, the following definition can be added to the dependencies of your Project
:
.Package(
url: "https://github.com/square/SuperDelegate.git",
versions: Version(0,8,0)..<Version(0,9,0)
),
To use git submodules, checkout the submodule with git submodule add [email protected]:Square/SuperDelegate.git
, drag SuperDelegate.xcodeproj to your project, and add SuperDelegate as a build dependency.
public class AppDelegate: SuperDelegate, ApplicationLaunched
Have your UIApplicationDelegate
subclass SuperDelegate
and conform to the ApplicationLaunched
protocol. SuperDelegate guarantees to call setupApplication()
only once per application launch, before making any other delegate calls. SuperDelegate also guarantees that loadInterfaceWithLaunchItem(_:)
will be called once, when your app is brought to the foreground for the first time after it is launched.
To opt into more AppDelegate features, have your AppDelegate
class conform to the associated protocol. For example, making your AppDelegate
class conform to LocalNotificationCapable
will give your app the ability to post local notifications.
We’re glad you’re interested in SuperDelegate, and we’d love to see where you take it. Please read our contributing guidelines prior to submitting a Pull Request.
Thanks, and happy delegating!