2

I want my app to support iOS 6. So I set the Base SDK to iOS 6 and the deployment target is iOS 6 also. But when I build my project, the compiler complains that some macros in the project which is iOS 6 compatible are not defined. Such as __IPHONE_6_1.

Should I should change the Base SDK?

Wyetro
  • 8,439
  • 9
  • 46
  • 64

1 Answers1

3

You only need to change the deployment target for it to work.

Wyetro
  • 8,439
  • 9
  • 46
  • 64
ZHZ
  • 2,088
  • 13
  • 16
  • Thank you ! Did you mean I just change the deployment target and not need change the base sdk. For example if i want to make my app iOS 6 compatible, i just change deployment target to ios6 , and base sdk > = ios6 (maybe iOS 7 iOS 8 ) – dk_checkitPortal Nov 27 '15 at 06:33