我试图在Objective-c中使用一些非常基本的Cocoa编程,而不使用Xcode。这主要用于学习目的,而不是用于真实世界的应用程序开发。
我使用以下源代码创建了一个“hello world”程序:
#import <Cocoa/Cocoa.h>
int main(int argc, const char * argv[]) {
NSApplication* app = [NSApplication sharedApplication];
id window =
[[NSWindow alloc] initWithContentRect:NSMakeRect(0, 0, 400, 400)
styleMask:NSWindowStyleMaskTitled
backing:NSBackingStoreBuffered
defer:NO];
[window setTitle:@"Hello world"];
[window makeKeyAndOrderFront:nil];
[window center];
NSText* t = [[NSText alloc] initWithFrame:NSMakeRect(20,20,100,100)];
[t setString:@"test"];
[window addSubview:t];
[app run];
return 0;
}
在上面的例子中,我试图在窗口中添加一些简单的文本“Test”。但是,只要我开始编译应用程序,我就会得到:
-[NSWindow addSubview:]: unrecognized selector sent to instance 0x7fb8e0611270
2017-06-24 14:34:02.777 lala[39810:1252869] *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[NSWindow addSubview:]: unrecognized selector sent to instance 0x7fb8e0611270'
*** First throw call stack:
(
0 CoreFoundation 0x00007fff93bcf2cb __exceptionPreprocess + 171
1 libobjc.A.dylib 0x00007fffa89da48d objc_exception_throw + 48
2 CoreFoundation 0x00007fff93c50f04 -[NSObject(NSObject) doesNotRecognizeSelector:] + 132
3 CoreFoundation 0x00007fff93b41755 ___forwarding___ + 1061
4 CoreFoundation 0x00007fff93b412a8 _CF_forwarding_prep_0 + 120
5 lala 0x0000000103b0feab main + 651
6 libdyld.dylib 0x00007fffa92bf235 start + 1
7 ??? 0x0000000000000001 0x0 + 1
)
为什么我的应用程序会因[NSWindow addSubview:]: unrecognised selector sent to instance
而崩溃?如何以编程方式向窗口添加文本?
答案 0 :(得分:1)
尝试使用NSTextField而不是NSText:
NSRect frameRect = NSMakeRect(20,20,100,100)
NSTextField *myTextField = [[NSTextField alloc] initWithFrame:frameRect];
[myView addSubView:myTextField];
此外,您需要制作基于AppDelegate的应用程序或基于Storyboard的应用程序,以便您可以使用NSView来显示对象。
答案 1 :(得分:0)
在这里来寻找将NSTextfield添加到视图的解决方案,但它证实了我一直在尝试使用的内容。相反,我尝试使用“ setContentView”,但随后文本填充了视图,而我需要它作为子视图。所以这是我的代码:
NSTextField *yourLabel = [[NSTextField alloc] initWithFrame:NSMakeRect(0, 0, width , height * 1.0/3.0)];
yourLabel.editable = false;
yourLabel.bezeled = true;
[yourLabel setTextColor:[NSColor blackColor]];
[yourLabel setBackgroundColor:[NSColor colorWithRed:0.1 green:0.1 blue:0.1 alpha:0.5]];
[yourLabel setFont:[NSFont fontWithName:@"GurmukhiMN-Bold" size:(height/24)]];
yourLabel.stringValue = [NSString stringWithFormat:@"The Second Output Is Operational"];
yourLabel.alignment = NSTextAlignmentCenter;
[self.window.contentView addSubview:yourLabel];
关键区别在于我将消息发送到的位置。似乎这是添加子视图的最佳方法,而其他子视图会导致竞争状况或崩溃。
为完整起见,我较早地获得了宽度和高度(它们在整个视图中都使用过,因此请一次抓取它们):
height = self.window.frame.size.height;
width = self.window.frame.size.width;