2

I've set my project's Deployment Target to 7.0

Xcode still pop out this error message

enter image description here

enter image description here

It happen after I upgrade Xcode to version 6.3

What did I miss setting?

Jenny
  • 351
  • 3
  • 19
  • Make sure the Test target (xctest) has the same deployment target ( 7.0 ) as the main build target – Raptor Apr 13 '15 at 03:14

1 Answers1

2

Normally there are 2 build targets by default in Xcode projects, one is the main build target while the other is the Test Target.

In your case, make sure both Deployment Target is set to 7.0.

Raptor
  • 53,206
  • 45
  • 230
  • 366