Become a MacRumors Supporter for $50/year with no ads, ability to filter front page stories, and private forums.

zedmix

macrumors newbie
Original poster
Aug 30, 2011
1
0
very good, I have the following problem, I'm new to iPhone programming and I am following a manual I've entered the following code in the following.
“miAppViewController.h”

Code:
#import <UIKit/UIKit.h>
@interface miAppViewController : UIViewController {
UILabel *miEtiqueta;
}
@property (nonatomic,retain) IBOutlet UILabel *miEtiqueta;
-(IBAction)cambiarEtiqueta;
@end

"miAppViewController.m"

Code:
@synthesize miEtiqueta;
-(IBAction)cambiarEtiqueta{
miEtiqueta.text = @”Bazzinga!”;
}
- (void)dealloc {
[miEtiqueta release];
[super dealloc];
}

Enter all buttons and connections such, When compiling gives me the following error and do not understand what I'm not doing well.

Thanks
 
Register on MacRumors! This sidebar will go away, and you'll see fewer ads.