本文介绍了AppDelegate或AppController的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在阅读可可教程时,我注意到一些教程使用 AppDelegate 和一些 AppController code> IBActions 打开使用 NSWindowController 子类的各种窗口。

While reading cocoa tutorials i've noticed that some of the tutorials use AppDelegate and some AppController for defining IBActions that open various windows that use subclasses of NSWindowController.

这是否有某种经验法则?

Is there some sort of rule of thumb for this?

推荐答案

这只是一个类名。 AppDelegate意味着该类的主要职责是作为NSApplication的委托,而AppController似乎意味着更广泛的责任。

It's just a class name. AppDelegate implies that the class's main duty is as NSApplication's delegate, whereas AppController seems to imply a broader range of responsibility.

这篇关于AppDelegate或AppController的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-01 17:54