Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我刚刚开始学习 C 编程并使用 Xcode 4.6.2。当我为我的 Xcode 项目创建一个新目标时,一切正常,但 Xcode 只运行原始目标的主类。如何运行我的新目标的主类?
如果您有另一个包含“ main”函数的单独源代码文件,您可以使用“文件检查器”(出现在 Xcode 窗口的右侧)来设置它的“目标成员资格”。
main
它看起来像这样:
这里的想法是,您将在一个文件中为您的第一个目标提供一个“ ”函数,并在另一个文件中为您的第二个目标提供main一个单独的“ ”函数。main