-1

我收到的错误和警告似乎表明第 4 版示例适用于 OSX 10.7 和 xcode 4,但我使用的是 OSX 10.6 和 Xcode 3.2。

我已经编辑了项目设置以设置 Xcode 3.2,但是当我尝试构建 Typing Tutor 时继续收到这些错误。我不知道在哪里寻找修复程序。这是我的第一次尝试;当我尝试其他示例时,大概会发生相同类型的错误。如何修复所有这些的 Xcode 设置?某处是否有勘误表文件,其中包括我的问题?

缺口

ERRORS and WARNINGS:

COPY OF "BUILD FAILED" :

Check dependencies

[WARN]Deployment target 10.7 for architecture 'x86_64' and variant 'normal' is greater than the maximum value 10.6 for the Mac OS X 10.6 SDK.

error: unknown property attribute 'strong'
@property (strong) NSColor *bgColor;
^
warning: no 'assign', 'retain', or 'copy' attribute is specified - 'assign' is assumed
@property (strong) NSColor *bgColor;
^
warning: default property attribute 'assign' not appropriate for non-gc object
2 warnings and 1 error generated.

尼克

帖子:1 加入时间:2011 年 12 月 31 日星期六晚上 10:19

4

1 回答 1

2

该项目可能正在使用仅在 OS X 10.7 和 iOS 5+ 中可用的 ARC(自动引用计数)。该项目还可能使用 UI 故事板,这意味着您将不得不使用 Xcode 4 和 iOS 5。要摆脱这些错误,尽管您会将这些属性从强转换为保留,并且如果它不是属性,可能还会放入非原子您在其他线程中使用。

@property (retain) NSColor *bgColor;
于 2012-06-12T23:50:14.853 回答