1

Is there any frameworks for parsing of project.pbxproj contained in .xcodeproj file?

Artem Novichkov
  • 2,356
  • 2
  • 24
  • 34

1 Answers1

3

Ruby: https://github.com/CocoaPods/Xcodeproj

Swift: https://github.com/xcodeswift/xcproj

Both parse the Xcodeproject file into a more manageable object.

Allowing you to add new files, remove build phrases or edit what files belong to a target

Max Rogers
  • 914
  • 7
  • 7