#import <Foundation/Foundation.h>
int main (int argc, const char * argv[]) {
NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
// insert code here...
NSLog(@"Hello world!");
[pool drain];
return 0;
}
我正在使用xcode,当我构建并运行时,我看不到输出。
开关真的很快吗?
答案 0 :(得分:2)
您必须通过Run - &gt;手动显示控制台窗口。控制台或Shift + Cmd + R
答案 1 :(得分:0)
是的。在做这样的事情时,我通常在[pool drain]
行和Build和Debug上放置一个断点。然后我的日志消息显示在控制台中。 :)