[置顶] headfirst iphone编程中 第一张label文字无法变换

为什么按照书中的代码 是无法变换的?

下载了书中示例代码,经过研究发现,改成如下,才能成功:

@interface iDecideViewController : UIViewController {

     UILabel *decisionText;

}


@property (retain, nonatomic) IBOutlet UILabel *decisonText;

-(IBAction) buttonPressed: (id) sender;


注意 IBoutlet的位置和书中不同。

改成上面就可以成功执行了



你可能感兴趣的:(编程,iPhone,interface)