I have controls and controllers that I have to include in my projects, over and over
So I wants to make a frameworkwith these controls library.
I have to precise that my framework has to includeAlamofire
I made the framework, but when I integrate it in a project and I subclass one of my windowControllers, I have the followin error inthe subclassed initializer: "Must call a designated initializer of the superclass 'clistWindow' "
Of course, I call the superclass initializer(which is in the framework) .
I tried in the subclassed initializer to call "super.init(window: nil)" but I have the error: "Argument labels '(window:)' do not match any available overloads"
I don't understand because in the framework class, I have an initializerwith initialise (to nil) all the variables. IL thought it was suficient to make a designated initializer.
On other thing: when I inspect the interface header of the class (I mean the .h file) I don't have this designated initializer.
Any Help?