1

I'm trying to test my swift app on my iPhone 5 device. But I'm getting the following message:

enter image description here

I just updated my iPhone 5 and xCode 6 to the latest versions. Any ideas?

blee908
  • 12,165
  • 10
  • 34
  • 41

2 Answers2

1

Found out the issue was my deployment target in build settings is 8.0, it should be 7.0 if I want my swift app to run in iOS 7.

blee908
  • 12,165
  • 10
  • 34
  • 41
1

You cannot run the app when it is made with swift because that comes with iOS 8. you need the beta on your iPhone And you cannot use swift for iOS 7 programming

LinusGeffarth
  • 27,197
  • 29
  • 120
  • 174
  • 2
    Actually it seems that , Swift applications compile into standard binaries and can be run on OS X 10.9 and iOS 7. http://stackoverflow.com/questions/24001778/do-swift-based-applications-work-on-os-x-10-9-ios-7-and-lower/24002461#24002461 – blee908 Aug 18 '14 at 17:31