欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

在Mac OS X下使用命令行编译Objective-C程序

程序员文章站 2024-01-07 12:19:40
...

命令:clang -fobjc-arc -framework Foundation <prog file> -o <exe file> 

样例:

hello.h
——————
#import <Foundation/Foundation.h>

hello.m
——————
#import “hello.h”

int main()
{
     NSLog(@“hello");
     return 0;
}

$ clang -fobjc-arc -framework Foundation hello.m -o hello
$ ./hello   #执行

上一篇:

下一篇: