在“界面”构建器中拖动文件所有者时无法看到我的标签插座

时间:2010-09-12 20:43:50

标签: iphone ios4

我的.h控制器中有这个

@interface helloViewController : UIViewController {
    IBOutlet UIlabel *label;

}

-(IBAction)hello:sender(id);

@end

我打开了相应的.xib文件,我可以拖动并将按钮-hello关联到文件所有者但是尝试关联标签不起作用:它建议我关联-view outlet而不是为什么?

1 个答案:

答案 0 :(得分:1)

您的方法声明应该是:

-(IBAction)hello:(id)sender;

此外,UILabel需要资本L

IBOutlet UILabel *label