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
"miAppViewController.m"
Enter all buttons and connections such, When compiling gives me the following error and do not understand what I'm not doing well.
Thanks
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