Fetching articles...

Conditionally compile code for extensions in Swift

I have google this so many times, now I just have to write it down!

When building a framework with functions you can't use in an App Extension, like a ShareExtension or WidgetExtension. Wrap that function or class in an @available like this:


@available(iOSApplicationExtension, unavailable)
func notInExtensions() 
{
    if UIApplication.shared.delegate == nil 
    {
        print("No delegate")
    }
}

Then create a custom Swift compiler flag "APP_EXTENSION" for each extension, and use it like so:


if APP_EXTENSION
    // do whatever else the extension should
else
    notInExtensions()
endif

Nothing more to it!

About

Hello! How nice of you stopping by! ❤️

My name is Olof Andersson-Thorén, I am an iOS/Backend/Web/Android developer from Sweden.

I really enjoy creating stuff, and that is the reason why I am doing this. I started working full-time on building apps in 2009.

At the moment I work as a consultant for companies that need help with their apps. During off-hours I build indie-apps for fun. My main app is Feeds, a glorified news and RSS-reader that keeps track of the web for you. I have published more than 75 apps on the appstore/Google play store though most of them are not active today. Aggressive Development has published 15 apps under its own name and many more for other companies.

Please feel free to say hello or give feedback, etc: olof@aggressive.se.