为什么界面构建器中的创建操作中没有字段“event”和“arguments”?

时间:2015-10-24 18:43:07

标签: xcode macos interface-builder

我的文件AppDelegate.h

#import <Cocoa/Cocoa.h>

@interface AppDelegate : NSViewController <NSApplicationDelegate,NSTableViewDataSource,NSURLConnectionDataDelegate>{

NSMutableArray *users;
NSMutableArray *messages;
NSMutableData *responseData;
NSString *getUsersRequest;
NSString *getMessagesRequest;

int requestStatus;
NSInteger userId;

}

@property (weak) IBOutlet NSTableColumn *tableColumn;
@property (weak) IBOutlet NSTableView *tableUsers;
@property (weak) IBOutlet NSButton *send;

...

我正在尝试在xcode中创建动作:

enter image description here

但是我看不到字段“event”和“arguments”,为什么???

1 个答案:

答案 0 :(得分:0)

要实际创建操作,您应该使用.m(实现)文件,而不是.h(标题)文件。

此外,与iOS不同,在为OS X和AppKit进行开发时,选项EventArguments不可用,这是正常的。