Hi,
I have a project in Xcode 12.5 in objective-c with a main xib and a second xib that I load with
NSWindowController *redValuesWindow = [[NSWindowController alloc] initWithWindowNibName"RedValuesWindow"];
[redValuesWindow showWindow:nil];
And the XIB that I want to load has no view controllers but a NSWindowController with outlets attached to but I receive from the debugger that error:
[Nib Loading] Failed to connect (stringValues) outlet from (NSWindowController) to (NSTextView): missing setter or instance variable
What canI do?
I have a project in Xcode 12.5 in objective-c with a main xib and a second xib that I load with
NSWindowController *redValuesWindow = [[NSWindowController alloc] initWithWindowNibName"RedValuesWindow"];
[redValuesWindow showWindow:nil];
And the XIB that I want to load has no view controllers but a NSWindowController with outlets attached to but I receive from the debugger that error:
[Nib Loading] Failed to connect (stringValues) outlet from (NSWindowController) to (NSTextView): missing setter or instance variable
What canI do?