How do you create a simple Objective-C command line project in Xcode

前端 未结 1 1144
慢半拍i
慢半拍i 2020-12-15 16:18

I\'m moving from a C# VS2008 world into the Mac world and I just wanted to know how I can create a quick little command line based application so that I can write many littl

相关标签:
1条回答
  • 2020-12-15 16:43

    "Foundation" is the one you want. The Foundation framework is Apple's "standard library" for Objective-C that provides all the basic classes like NSArray, NSString, NSNumber, and much more. Since "plain" Objective-C without Foundation is not very useful for most applications, Apple probably chose to name its project template after the Foundation library.

    0 讨论(0)
提交回复
热议问题