Does anyone know of a good way to write an iOS 8 share extension without the MainInterface.storyboard that comes with the template?
MainInterface.storyboard
When I delete the fi
Figured it out!
Turns out there's a weird module naming thing going on in Swift, so you can fix it by adding an @objc name to the class:
@objc
@objc(PrincipalClassName) class PrincipalClassName: UIViewController { ...
and then set the NSExtensionPrincipalClass key to PrincipalClassName.
NSExtensionPrincipalClass
PrincipalClassName