Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我已经为 NSSearchField 设置了 IBOutlet 但它总是在 .m 文件中找到 nil 。为什么???
如果有任何想法,请给出与我的问题相关的答案。
根据您的故事板,您创建并通过该对象创建NSObject了Appdelegate出口,这就是它无法访问的原因。
NSObject
Appdelegate
因此,您必须创建NSWindowController类并将该类分配给WindowController情节提要。然后在该类中声明出口。
NSWindowController
WindowController
现在它可以随心所欲地访问和工作了。