Is there any frameworks for parsing of project.pbxproj
contained in .xcodeproj
file?
Asked
Active
Viewed 2,713 times
1

Artem Novichkov
- 2,356
- 2
- 24
- 34
-
What type of parsing do you want exactly? – Fangming Jun 26 '17 at 17:31
-
I want to find and update build phase scripts – Artem Novichkov Jun 26 '17 at 17:37
1 Answers
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
-
Thanks for the answer. Actually, I'm one of xcproj contributors :) – Artem Novichkov Mar 28 '18 at 06:33