我正在开发使用Xcode 4.6在ios5上部署的应用程序。我有一个单视图应用程序,我只是为新的View Controller创建了一个新的Objective-C类
名称为“ PiewController”,我已经定义了PiewController.h文件,如下所示:



我的PiewController.m看起来像这样



和我的PiewController.xib看起来像这样



和文件所有者的连接是:



和直接从AppDelegate加载PiewController时给出的错误


而AppDelegate看起来像

最佳答案

嗯,看来您想将PViewController的xib东西连接到ViewController。我认为调试消息可以解释为:ViewController中没有像piewTextField这样的属性(这是正确的,因为您在pviewController中定义了它)。您确定为pviewController而不是AppDelegate.m中默认的初始化ViewController加载了正确的xib吗?

10-01 16:14