I want to create iPhone application with native apple frameworks. But I want to create it from command line. Please help. Thanks
-
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.user529758– user5297582013-01-02 07:20:15 +00:00Commented Jan 2, 2013 at 7:20
-
I want to generate an Xcode project using command lineiPhone Developer– iPhone Developer2013-01-02 07:23:46 +00:00Commented Jan 2, 2013 at 7:23
-
1possible duplication of stackoverflow.com/q/3518719/1538079Niru Mukund Shah– Niru Mukund Shah2013-01-02 08:39:12 +00:00Commented Jan 2, 2013 at 8:39
-
Does this answer your question? Creating Xcode project from command lineMax MacLeod– Max MacLeod2021-05-17 14:11:05 +00:00Commented May 17, 2021 at 14:11
Add a comment
|
2 Answers
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
Daij-Djan
i do it all the time ;) works fine :) but I will admit it is fragile and easy to break