I hope to compile my source codes using iphone sdk, but I do not hope 开发者_如何学Cto compile in xcode. Is it possible? And how to do if I hope to get the XCode compiling scripts?
Welcome any comment.
Thanks
interdev
You can make use of the xcodebuild tool.
man xcodebuild for more information.
xcodebuild -configuration "$CONFIGURATION" -sdk $SDK
Was curious myself and searched for it. Looks like gcc
with the -framework Foundation
set will compile the application for you. ( http://www.w3style.co.uk/compiling-objective-c-without-xcode-in-os-x )
I haven't tried this yet though.
精彩评论