标题可能描述不准确
类似于 ios 创建 app 时默认创建 Main.storyboard,然后从这里启动.修改 info.plist,再在 AppDelegate 中设置 rootViewController 就可以从自定义的界面启动了,现在要在 cocoa 中实现类似的效果要怎么做,或者该查怎么查资料
//删除了 info.plist 中的启动项,然后程序貌似就不会进 AppDelegate 了....
1
HeartJ 2016-02-01 22:34:00 +08:00 via iPad
自定义的界面是在 storyboard 中吗?选中要启动的界面,设置成 initial 就可以吧?我是小白,不知道是不是你说的意思。
|
2
vincentxbb 2016-02-03 16:54:39 +08:00
var mainWindowController:MainWindowController?
func applicationDidFinishLaunching(aNotification: NSNotification) { // Insert code here to initialize your application let mainWindowController = MainWindowController() mainWindowController.showWindow(self) self.mainWindowController = mainWindowController } MainWindowController 重写他的 windowNibName,返回对应的 xib 文件名字就可以啦,假如是 sb 的话,参照楼上的应该也没问题,不用删除 info.plist 的启动项的 |