我几乎是 XCode 初学者,因此我尝试了 XCode 文档中给出的“Hello World”示例:快速入门指南:教程:使用 Xcode 编写“Hello, World!” 对于 OS X。
我正在使用 XCode 4.5.1,我使用 OS 10.8.2 从其文档中获取了这个示例。我遵循了指示;该示例不起作用。它产生了窗口,但没有产生“hello world”打印。相关代码为:
- (void)drawRect:(NSRect)dirtyRect
{
// Drawing code here.
NSString *hello = @"Hello, World!";
NSPoint point =NSMakePoint(15, 75);
NSMutableDictionary *font_attributes = [[NSMutableDictionary alloc] init];
NSFont *font = [NSFont fontWithName:@"Futura-MediumItalic" size:42];
[font_attributes setObject:font forKey:NSFontAttributeName];
[hello drawAtPoint:point withAttributes:font_attributes];
[font_attributes release];
}
有两点值得注意。这段代码的最后一行给出了一个错误:
release is unavailable: not available in automatic reference counting mode
所以我注释掉了这条线并运行了程序。窗口出现了,但没有“Hello World”。All Output 中出现了一条长消息,其中部分内容如下:
"/Users/me/Library/ScriptingAdditions/YouHelper.osax/Contents/MacOS/YouHelper: no matching architecture in universal wrapper
Hello: OpenScripting.framework - scripting addition "/Users/me/Library/ScriptingAdditions/YouHelper.osax" declares no loadable handlers."
我是在做一些愚蠢的事情,还是我使用了错误的例子?