我对应用程序开发很新,但之前从未遇到过这个错误,我想知道是否有人可以提供帮助.
在我的ViewController.h中我有:
#import#import #import @interface ViewController : UIViewController { IBOutlet UILabel *Title; }
我试图将空间和其他类型的角色放在
旁边,
但我无法让它工作.每次我插入AD横幅时,它都会出现错误"协议没有指定对象类型;默认为qualifed'id'"和"Expected identifier or'('.Heres a picture:
所以我的问题是,有谁知道怎么放@interface ViewContorller : UIViewController
?如果您这样做,将不胜感激!
谢谢
协议应以逗号分隔的方式列出,如下所示:
@interface ViewController : UIViewController{ IBOutlet UILabel *Title; }