如何更改IB中的应用程序委托类型?
我想通过IB更改MainWindow.xib中的App Delegate Type,因为我必须修改具有不同名称的现有项目的应用程序名称。我已经更改了源代码中的应用程序委托 .h/.m 文件,只有应用程序委托类型无法修改。下面附有 MainWindow.xib 的屏幕截图。
I want to change the App Delegate Type in MainWindow.xib through IB, beacause I have to modify the application name of the existing project with different name. I have changed the app delegate .h/.m files in the source code,only App Delegate Type not able to modify. The screen shot of MainWindow.xib is attached below.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
打开检查器,您可以在选择对象时更改其类。
类信息位于身份检查器选项卡中(在 Xcode 4 上,但对于 Xcode 3 必须相同)
Open the inspector and you can change the object's class when it is selected.
The class info is in the identity inspector tab (on Xcode 4, but it must be the same for Xcode 3)
您可以使用“_”代替“-”作为
IT_transJKAppDelegate
。You can use "_" in place of "-" as
IT_transJKAppDelegate
.