PluggableApplicationDelegate icon indicating copy to clipboard operation
PluggableApplicationDelegate copied to clipboard

Smallest AppDelegate ever by using a decoupled-services based architecture. 🛠

Results 16 PluggableApplicationDelegate issues
Sort by recently updated
recently updated
newest added

This allows to access the `window` property of your classes implemented `ApplicationService`, as you would originally with a classic class that implements `UIApplicationDelegate`.

Basic project migration , closed warnings

Where do i setup AppDelegate window and use it in the app where needed ?

I tried this to separate remoteControlEvents and my code looks like ``` import Foundation import PluggableApplicationDelegate final class MusicControlsAppService: NSObject, ApplicationService { func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey :...

On Xcode 8.3: > Instance method 'application(_:public:sourceApplication:annotation:)' nearly matches optional requirement 'application(_:open:sourceApplication:annotation:)' of protocol 'UIApplicationDelegate' Fix is to declare method as `public` rather than `open`

I'm using `Carthage` as my dependency manager and the last tagged version `0.1.2` does not work but what's currently on `master` does. Can you tag or release what's on `master`?...