1

我的代码:

@interface WBMessageTableCellView : NSTableCellView

@property (weak) IBOutlet NSTextField *authName;
@property (weak) IBOutlet NSTextField *createdTime;
@property (weak) IBOutlet NSImageView *userProfileImageView;

@property (weak) IBOutlet NSTextView *statusTextView;

@end

但我得到了这个错误, 在此处输入图像描述 这有什么问题?我必须将我的代码更改为此,它可以工作,

@interface WBMessageTableCellView : NSTableCellView
{
    IBOutlet NSTextView *statusTextView;
}

@property (weak) IBOutlet NSTextField *authName;
@property (weak) IBOutlet NSTextField *createdTime;
@property (weak) IBOutlet NSImageView *userProfileImageView;

@property NSTextView *statusTextView;

我已经在这个文件上打开了 arc,并且该项目是新创建的。不是从非弧项目转换而来的。

4

1 回答 1

2

我已将我的评论提升为答案:

请看一下这个问题: 哪些 iOS 类不支持归零弱引用? 您不能创建对不支持对其实例的弱引用的类的弱引用。

于 2012-08-20T15:33:40.023 回答