18

I want to create iPhone application with native apple frameworks. But I want to create it from command line. Please help. Thanks

4
  • So you want to write an iOS app using command line tools, or you want to generate an Xcode project using the command line? The two are not even close. Commented Jan 2, 2013 at 7:20
  • I want to generate an Xcode project using command line Commented Jan 2, 2013 at 7:23
  • 1
    possible duplication of stackoverflow.com/q/3518719/1538079 Commented Jan 2, 2013 at 8:39
  • Does this answer your question? Creating Xcode project from command line Commented May 17, 2021 at 14:11

2 Answers 2

14
pod lib create ProjectName

This will create XCode project library, sample and UnitTests.

Sign up to request clarification or add additional context in comments.

Comments

-1

there is no ready-made tool to do this but you can use another project as a template, copy it, rename it and its targets/settings (it's all XML so you can parse and modify it, but for simplicity I would try to use a project template in which you only have to exchange some names :))

1 Comment

i do it all the time ;) works fine :) but I will admit it is fragile and easy to break

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.