为什么ViewController.h中存在问题?

时间:2014-04-14 05:01:37

标签: xcode project

我刚刚实施了AdMob,这个问题就出现了。有人可以告诉我为什么以及如何解决它?请。 http://i.gyazo.com/a47ab3197d20407db09d00f6a43dbe66.png

1 个答案:

答案 0 :(得分:0)

删除{和}(花括号)

{ // remove this bracket 
IBOutlet UILabel *HighScore;
} // remove this bracket

并将您的标签声明为上面的块

@interface ViewController : UIViewController {

    GADBannerView *bannerView_;
    IBOutlet UILabel *HighScore;
}

可能会解决您的问题。