I create new project with single view application and Run on device (iPhone 5s)
Product > Clean and Product > Run
Using Swift it takes 76 seconds
Using ObjC it takes 12 seconds
What's wrong with Swift or my computer ?
I create new project with single view application and Run on device (iPhone 5s)
Product > Clean and Product > Run
Using Swift it takes 76 seconds
Using ObjC it takes 12 seconds
What's wrong with Swift or my computer ?
Swift is a new language with a new compiler that has yet to optimized to the amount that Objective-C has since Objective-C has been around for many years.
Swift's compiler is also doing a lot more than Objective-C's compiler considering Swift is more strongly typed and does not required specifying imports (among other things).
Still, 76 seconds is a long time so either your computer is underpowered or you are low on resources for some reason.