0

I have updated to Xcode 9 and now trying to add SwiftyJson to my project. However, since there is a new interface for Xcode 9, I have no idea where to add this library.

enter image description here

rmaddy
  • 314,917
  • 42
  • 532
  • 579
Di Wang
  • 31
  • 1
  • 8

1 Answers1

1

Based on your screenshot, you are using Cocoapods. Assuming you are executing pod install appropriately when SwiftyJSON to your Podfile, you don't need to do anything else in Xcode. Simply import SwiftyJSON in the file you're attempting to use it in and you should be all set.

Additionally, all of the methods listed in SwiftyJSON's read me are still applicable to Xcode 9.

Finally, Xcode 9's interface for managing a project/target is not that different at all. I think you're problem is that you have the project selected, but you want to be looking inside your target instead.

enter image description here

allenh
  • 6,582
  • 2
  • 24
  • 40