不完整的实施视图控制器

时间:2012-12-13 14:22:41

标签: xcode uiviewcontroller implementation incomplete-type

我在Xcode中制作应用程序。这是我的第一个应用程序,我收到一个错误,在我的ViewController.m文件中显示“不完整的实现”。这是我得到错误的代码行:

@implementation ViewController : UIViewController;

1 个答案:

答案 0 :(得分:3)

删除该行末尾的分号:

@implementation ViewController : UIViewController

同时检查你的实现块中是否实现了在类接口和协议中声明的所有方法,你的类符合