Im working with xcode6. My last memory was I've remove all swift file in my project and add it again, and I encountered this error:
Asked
Active
Viewed 174 times
1 Answers
0
You need @UIApplicationMain
attribute to AppDelegate
. or you forgot to add AppDelegate?
@UIApplicationMain
class AppDelegate: UIResponder, UIApplicationDelegate {
...
}