I have a complete Objective C Project for IOS App. However, I would like to open a new project in Swift.
I have successfully mixed and matched Swift and Objective C in the same project like using header-bridge file . And I can call methods from the old source(Objective C) in Swift AppDelegate.
The situation right now is the Objective C project consists of a lot of files for example there are many AppDelegate with different parameters like AppDelegate.m, AppDelegate+abc.m, AppDelegate+dfg.m, AppDelegate+ppp.m....
I would like to ask whether I can directly run the Object C's AppDelegate in AppDelegate.swift and make the whole app run? Or Any other solutions?