How to add 64bit support to your iOS apps

- by

Apple’s new A7 processors support 64bit under iOS 7 – but only if your app is specifically compiled for 64bit. Ideally you want to compile once and use 64bit if the architecture supports, and if not use 32bit for devices that have A4 – A6x processors.

Since Xcode 5.0.2 you can do this, and here’s how:

  • head over to your app’s target and choose Build Settings
  • under Architectures, choose “Standard architectures, including 64bit”
  • Xcode will offer to “Change the deployment target to iOS 5.1.1″
  • agree to it and you’re done

Now your app will choose the 64bit frameworks where available, and otherwise use 32bit.

Screen Shot 2013-11-16 at 12.29.24



If you enjoy my content, please consider supporting me on Ko-fi. In return you can browse this whole site without any pesky ads! More details here.

Leave a Comment!

This site uses Akismet to reduce spam. Learn how your comment data is processed.